// JavaScript Document

var help = null;
function popHelp(URL, myWidth, myHeight){
	LeftPosition = (screen.width) ? (screen.width-myWidth)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-myHeight)/2 : 0;
	specs ='height='+myHeight+',width='+myWidth+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=yes,toolbar=no, menubar=no'
	help = window.open(URL,"BingoDownloadHelp",specs);
	help.focus();
}