// JavaScript Document

<!--
function popup(mylink, windowname, height)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=578,height='+height+',scrollbars=yes, location=no,top=300,left=300,resizable=yes,directories=no,status=no,menubar=no,toolbar=no');
return false;
}

function demopopup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=905,height=750,scrollbars=no, location=no,top=100,left=100,resizable=no,directories=no,status=no,menubar=no,toolbar=no');
return false;
}

function popup_pg(mylink, windowname, height)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=900,height=715,scrollbars=yes, location=no,top=10,left=150,resizable=yes,directories=no,status=no,menubar=no,toolbar=no');
return false;
}

//-->
