<!-- 
function NewWindow(page, name, w, h, scroll) 
   {
   var horpos = (screen.width - w) / 2;
   var verpos = (screen.height - h) / 2;
   loc = 'height='+h+',width='+w+',top='+verpos+',left='+horpos+',scrollbars='+scroll+',non-resizable'
   win = window.open(page, name, loc)
   if (parseInt(navigator.appVersion) >= 4) 
      { 
      win.window.focus(); 
      }
   }
//-->
