function confirmdel()
				{
					var conf;
					conf = confirm("Are you sure you want to remove this record?");
					if (conf)
						{   
							return true; 
						}
					else
						{ 
							alert("Deletion operation was cancelled."); 
							return false;  
						}
				}

function closeWindowAndRefresh(url)
                {
	                opener.location.href = url;
	                window.close();
                }
                
 function openWindow(url)
               {
					window.open(url,"mywindow","height=600,width=700,menubar=no,scroll bar=yes");
               }
               
  function openNewWindow(url)
               {
					window.open(url,"mywindow");
               }
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



