//Script to display new window
<!--
	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=850,height=700,scrollbars=yes');
return false;
}
//-->
