// JavaScript Documentfunction chkForm(){	displayMsg = false;	strAlert = "You did not make a selection for the following games: \n";	for (i = 0; i < document.picksform.elements.length ; i++)	{    		if (document.picksform.elements[i].type == 'radio')		{			radName =  document.picksform.elements[i].name;			notChecked = true;			do			{				if (document.picksform.elements[i].checked)				notChecked = false;				i++;			} while (document.picksform.elements[i].name == radName);			--i;			if(notChecked)			{   				team1name =   document.picksform.elements[i].value;				displayName = "Game @ " + team1name + "\n";				strAlert = strAlert + displayName;				displayMsg = true;			} 		}	}	if(displayMsg)	{		alert(strAlert);		return false;        	}}var win = null;var left=200;var top=200;function NewWindow(mypage,myname,w,h,scroll){LeftPosition = (screen.width) ? (screen.width-w)/0 : 0;TopPosition = (screen.height) ? (screen.height-h)/0 : 0;settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'win = window.open(mypage,myname,settings)if(win.window.focus){win.window.focus();}}