<!--
function popup(theURL,winName,features)
{
if (! window.focus)return true;
var href;
if (typeof(theURL) == 'string')
   href=theURL;
else
   href=theURL.href;
window.open(theURL,winName,features);
return false;
}
//-->
