//scrolls the window vertically to hide the banner
function scrollBanner()
{
	window.scroll(0,82); 
}

//Script to open link in new window (a normal browser window)
function openWin(URL,name)
{
	aWindow=window.open(URL,name);
}

//Script to open link in new window (browser window without scroll bars, status bar or menu bar)
function openWinNoBars(URL,name)
{
	aWindow=window.open(URL,name,"toolbar=no,height=310,width=520,left=150,top=150,screenX=150,screenY=150,status=no,menubar=no");
}

//Script to open link in new window (browser window without scroll bars, status bar or menu bar)
function openWinNoBarsScrollableResizeable(URL,name)
{
	aWindow=window.open(URL,name,"toolbar=no,height=500,width=700,left=50,top=50,screenX=50,screenY=50,status=no,menubar=no,scrollbars=yes,resizable=yes");
}
