<!--
var newWin = null; 
function popUp(strURL) { 
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions="";  
   strOptions="toolbar,menubar,scrollbars,"+ 
     "resizable,location"; 
 newWin = window.open(strURL, 'newWin'); 
 newWin.focus(); 
}
//-->