// JavaScript Document
<!--
  var mywindow;
  
  function openWindow(location, w, h, param) 
  {
    myTop=screen.height/2-h/2;
    myLeft=screen.width/2-w/2;
    mywindow=open(location,'login','width='+w+',height='+h+','+param+',top='+myTop+',left='+myLeft);
    if (mywindow.opener == null) mywindow.opener = self;
  }
  
-->
// -->


