<!--
function popup(mylink, windowname, width, height, aleft, atop, aresize, ascroll)
{
param = ("width=" + width + ", height=" + height + ", left=" + aleft + ", top=" + atop + ",resizable=" + aresize + ", scrollbars=" + ascroll);
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, param);
return false;
}
//-->