

<!--
function popup(mylink, windowname, xWidth, xHeight)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width='+xWidth+',height='+xHeight+',scrollbars=yes');
	return false;
}
//-->

