self.name="mainWin";
<!--
/*
url-location of file that you want to load in new window
n-name that you want to give to new window. Required by some scripts
w-width of new window in pixels
h-height of new window in pixels
s-new window scroll property. 1 for YES,0 for NO
r-new window resize property. 1 for YES,0 for NO
x-x position of window on screen
y-y position of window on screen
*/
function popup(url,n,w,h,s,r,x,y)
{
win=window.open(url,n,"width="+w+",height="+h+",scrollbars="+s+"statusbar=0,resize="+r+",toolbars=0,location=0");
win.moveTo(x,y);
}
//-->
