// JavaScript Document
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
href=mylink.href;
w = screen.width;
h = screen.height;
ah = h - 25;
nw=window.open(href,windowname,'toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,status=no,resizable=1,width='+w+',height='+ah);
window.nw.moveTo(0,0);
return false;
}
//-->