<!--
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=400,height=200,scrollbars=yes,resizable=yes,left=150,top=150,dependent=yes');
return false;
}
//-->

<!--
function popupa(mylink, windowname)
{
if (! window.focus)
	return true;
	
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href,windowname,'width=650,height=550,left=1,top=1,resizable=yes,dependent=yes,scrollbars=yes');
return false;
}
//-->

<!--
function popupb(mylink, windowname)
{
if (! window.focus)
	return true;
	
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href,windowname,'width=600,height=300,left=150,top=150,resizable=yes,dependent=yes,scrollbars=yes');
return false;
}
//-->