// JavaScript Document


function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=785,height=700,top=0,left=0,scrollbars=yes,menubar=yes,status=yes');
return false;
}

function vm(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=455,height=390,top=0,left=0,scrollbars=yes,menubar=yes,status=yes');
return false;
}
