// Java Document
<!--
function newwindow(filename,width,height)
{
  var x = (screen.width - width) / 2;
  var y = (screen.height - height) / 2;
  if (navigator.userAgent.indexOf("AOL") > 0)
    win = window.open(filename,"Information");
  else
    win = window.open(filename,"Information","scrollbars=yes,resizable=yes,width="+width+",height="+height);
  win.moveTo(x,y);
  win.focus();
}

// -->