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