function popup(mylink, windowname, width, height)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;

 param = 'width=' + width + ',height=' + height + ',scrollbars=yes,resizable=yes,status=yes,titlebar=yes,menubar=yes,top=0,left=0';

  window.open(href, '_blank', param);
return false;
}


