// NewWindow2.js
function NewWindow2(wHref , wName , wB , wL , wS)      
 {                                                    
  WinGr = ("width=" + wB + "," + "height=" + wL);     
  if(wS == "1")                                       
   {                                                  
   WinGr = (WinGr + ",scrollbars=yes,resizable=yes,top=60,left=60");                                  
   }                                                  
  MyWindow = window.open( wHref , wName , WinGr );               
  MyWindow.focus();                                   
 }
