// JavaScript Document

function popup(mylink, informMe)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, informMe, 'width=680,height=280,scrollbars=yes,resizable=yes,left=200,top=220,toolbar=no,location=no,');
return false;
}

