// JavaScript Document 27-04-2009
<!--
function popup4(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=974,height=550,left=355,top=20,scrollbars=no');
return false;
}
//-->
