<!--
var newWin = null; 
function popUp(strURL) { 
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions="";  
    strOptions="height=450,width=350,resizable"; 
 newWin = window.open(strURL, 'newWin'); 
 newWin.focus(); 
}
//-->