// javascript functions

var newWin = null; 
 
function popUp(strURL, strType, strHeight, strWidth, e) {
if(!window.event)
{
  if(e.which!=13 && e.which !=1)
 {
    return true;
 }
} else {
         if (e.keyCode != 13 && e.keyCode != 0){
           return false;
         }

       }
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions="scrollbars=yes,"; 
 if (strType=="console") 
   strOptions="resizable,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixed") 
   strOptions="status,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="elastic") 
   strOptions="toolbar,menubar,scrollbars,"+ 
     "resizable,location,height="+ 
     strHeight+",width="+strWidth; 
 newWin = window.open(strURL, 'newWin', strOptions); 
 newWin.focus(); 
 return false;
}
