function lilpopup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=400,height=200,location=1,status=1,scrollbars=1,menubar=1,toolbar=1,status=1,scrollbars=yes,resizable=yes');
return false;
}

function bigpopup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'left=200,top=200,width=1000,height=700,location=1,status=1,menubar=1,toolbar=1,status=1,scrollbars=1,scrollbars=yes,resizable=yes');
return false;
}

function popup(mylink, windowname, theTop, theLeft, theHeight, theWidth)
{
if (! window.focus)return true;

var href;
var windowSize

windowSize = "left="+theLeft+",top="+theTop+",width="+theWidth+",height="+theHeight+",location=1,status=1,menubar=1,toolbar=1,status=1,scrollbars=1,scrollbars=yes,resizable=yes"

if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, windowSize);

return false;

}

function fullpopup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'fullscreen=yes location=1,status=1,menubar=1,toolbar=1,status=1,scrollbars=1,scrollbars=yes,resizable=yes');
return false;
}

