<!--

var newWin = null; 
function popUp(strURL) { 
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions="";  
    strOptions="height=350,width=500,resizable,scrollbars,menubar"; 
 newWin = window.open(strURL, 'newWin', strOptions); 
 newWin.focus();
}

function validate() {
  	if ( confirm("Are you sure you want to delete - **THERE IS NO UNDO** ?"))
  	return true;
  	else
  	return false;
}
-->