// JavaScript Document
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=370,height=360,left=240,top=120,scrollbars=no, resizable=yes, location=no, toolbar=no');
return false;
}
//-->
