// JavaScript Document
function popup(mylink, windowname, x, y)
{

if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
Window=window.open(href, windowname, 'width=' +x+',height='+y+',scrollbars=yes,resizable=yes');

return false;
}