﻿// JScript File


function popup1(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=430,height=340,scrollbars=yes');
return false;
}
function popup2(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=600,height=700,scrollbars=yes');
return false;
}

function goImgWin(Wtitle,myImage,myWidth,myHeight,origLeft,origTop) {

myHeight += 24;
myWidth += 24;
TheImgWin = window.open('','image','height=' +
myHeight + ',width=' + myWidth +',toolbar=no,directories=no,status=yes,' +'menubar=no,scrollbars=no,resizable=no');

// Write the contain of window
TheImgWin.document.write("<html><head><title>"+Wtitle+"</title>");
TheImgWin.document.write("</head><body leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0'>");
TheImgWin.document.write("<img src="+myImage+" border=0 >");
TheImgWin.document.write("</body></html>");
TheImgWin.resizeTo(myWidth+2,myHeight+30);
/*TheImgWin.moveTo(origLeft,origTop);*/
TheImgWin.focus();
}

