// JavaScript Document

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
var screenW = screen.width;
var screenH = screen.height;
var sW = (screenW - 500);
var sH = ((screenH - 650)/2);
window.open(href, windowname, 'width=500,height=650,top='+sH+',left='+sW+',scrollbars=auto');
return false;
}

function newspopup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=500,height=600,scrollbars=yes');
return false;
}
