function confirmDelete() 
{
var agree=confirm("Are you sure you wish to delete this request? \n \n This action cannot be undone!");
if (agree)
	return true ;
else
	return false ;
}

function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}

function cancelButton() 
{
var agree=confirm("Cancel without saving changes?");
if (agree)
	window.location="index.asp";
else
	return false ;
}

function openHelp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=420,height=360,left = 200,top = 200');");
}

