<!--
function openWindow(url)
{
   cx = (screen.width / 100) * 80;
   cy = (screen.height / 100) * 80;

   if (document.all)
   {
      x = window.screenLeft + 20;
      y = window.screenTop + 20;
   }
   else if (document.layers)
   {
      x = window.screenX + 20;
      y = window.screenY + 20;
   }

   if (x + cx > screen.width)
      x = 0;
   if (y + cy > screen.height)
      y = 0;

   windowbits = "scrollbars=yes,top="+y+",screenY="+y+",left="+x+",screenX="+x+",width="+cx+",height="+cy;
   window.open( url, "window",  windowbits );
}
//-->
