function Delete(path,objectid, name)
{

  var msg = name + "\nAre you sure you want to delete this item?";
  if (confirm(msg))
  {
      var lnk = path + "&folderid=" + objectid + "&Site_Name=";
      location.replace(lnk);
  }
}

function open_win(url_add)
   {
   window.open(url_add,'add','width=550,height=750,menubar=yes,status=yes,location=yes,toolbar=yes,scrollbars=yes');
   }

 function clearMe(formfield){
  if (formfield.defaultValue==formfield.value)
   formfield.value = ""
 }