// JavaScript Document

<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
newWindow = window.open(href, windowname, 'width=750,height=600,scrollbars=yes');
newWindow.blur();
return false;
}

function popup2(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
newWindow = window.open(href, windowname, 'width=750,height=600,scrollbars=yes');
newWindow.blur();
return false;
}


//-->

