Count Lines in Pages

Contents of Page: picks1demo.asp Number of Lines: 721 Last Modified: 2/11/2025 7:03:48 PM
0001: <% @Language = "VBScript" %>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/constants.inc" -->
0005: 
0006: <%
0007: 	realuser = Request.Cookies("user")
0008:     user = "rosie@lusogolf.org"
0009: '	region = Request.QueryString("region")
0010:     region = 4
0011:     season = 2003
0012: '	If realuser = ""  Then Response.Redirect("login.asp?from=picks1demo.asp")
0013: 
0014: 	lineColor = "#cccccc"
0015: 	
0016: 	Set rsRegion = Server.CreateObject("ADODB.Recordset")
0017: 	sqlString = "SELECT * FROM mmRegionals " & _
0018: 			"WHERE Season = " & season & " " & _
0019: 			"AND Region = " & region
0020: 	rsRegion.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0021: 	regionName = rsRegion("RegionName").Value
0022: 	venue = rsRegion("Venue").Value
0023: 	rsRegion.Close
0024: 	Set rsRegion = Nothing
0025: 
0026: 	Set rsTeams = Server.CreateObject("ADODB.Recordset")
0027: 	sqlString = "SELECT * FROM mmTeams WHERE Season = " & season
0028: 	rsTeams.Open sqlString, conn, adOpenDynamic, adLockOptimistic, adCmdText
0029: 	
0030: 	' set up field names depending on region
0031: 	Dim char
0032: 	char = Array("A","B","C","D")
0033: 	regionChar = char(region - 1)
0034: 	Dim teamfield(16)
0035: 	For i = 0 To 15
0036: 		j = i + 1
0037: 		If j < 10 Then
0038: 			num = "0" & CStr(j)
0039: 		Else
0040: 			num = CStr(j)
0041: 		End If
0042: 		teamfield(i) = rsTeams(regionChar & num).Value
0043: 	Next
0044: 	rsTeams.Close
0045: 	Set rsTeams = Nothing
0046: 
0047: 	' get the existing picks (if any)
0048: 	Set rsPicks = Server.CreateObject("ADODB.Recordset")
0049: 	sqlString = "SELECT * FROM mmPicks " & _
0050: 			"WHERE Season = " & season & " " & _
0051: 			"AND EmailAddress = '" & "bogus@user" & "' " & _
0052: 			"AND Complete = 'No'"
0053: 	rsPicks.Open sqlString, conn, adOpenDynamic, adLockOptimistic, adCmdText
0054: 	yesPicks = False
0055: 	Dim allPicks(15)
0056: 	For i = 0 To 14
0057: 		allpicks(i) = ""
0058: 	Next
0059: 	If Not rsPicks.EOF Then
0060: 		yesPicks = True
0061: 		For i = 0 To 14
0062: 			j = i + 1
0063: 			fname = regionChar & CStr(j)
0064: 			allpicks(i) = Mid(rsPicks(fname).Value, 2, 3)
0065: 			If allpicks(i) = "" Or IsNull(allpicks(i)) Then
0066: 				yesPicks = False
0067: 				Exit For
0068: 			End If
0069: 		Next
0070: 	End If
0071: 	rsPicks.Close
0072: 	Set rsPicks = Nothing
0073: 
0074: 	' determine which buttons are visible
0075: 	prevRegion = region -1
0076: 	If prevRegion = 0 Then
0077: 		button1 = ""
0078: 	Else
0079: 		Set rsRegion1 = Server.CreateObject("ADODB.Recordset")
0080: 		sqlString = "SELECT RegionName FROM mmRegionals " & _
0081: 				"WHERE Region = " & prevRegion
0082: 		rsRegion1.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0083: 		button1 = rsRegion1("RegionName").Value
0084: 		rsRegion1.Close
0085: 		Set rsRegion1 = Nothing
0086: 	End If
0087: 	nextRegion = region + 1
0088: 	If nextRegion = 5 Then
0089: 		button2 = "Final 4 Page"
0090: 	Else
0091: 		Set rsRegion1 = Server.CreateObject("ADODB.Recordset")
0092: 		sqlString = "SELECT RegionName FROM mmRegionals " & _
0093: 				"WHERE Region = " & nextRegion
0094: 		rsRegion1.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0095: 		button2 = rsRegion1("RegionName").Value
0096: 		rsRegion1.Close
0097: 		Set rsRegion1 = Nothing
0098: 	End If
0099: 
0100: 	x = Request.ServerVariables("HTTP_USER_AGENT")
0101: '	Response.Write("x=" & x)
0102: 	ShowHelp = "X"
0103: 	Y = InStr(1,x,"Android")
0104: 	If Y > 0 Then
0105: 	ShowHelp = ""
0106: 	End If
0107: 	Y = InStr(1,x,"Chrome")
0108: 	If Y > 0 Then
0109: 	ShowHelp = ""
0110: 	End If
0111: 	Y = InStr(1,x,"Firefox")
0112: 	If Y > 0 Then
0113: 	ShowHelp = ""
0114: 	End If
0115: 
0116: 	x = Request.ServerVariables("HTTP_USER_AGENT")
0117: 
0118: 	IsWindows = InStr(1,x,"Windows")
0119: 
0120: %>	
0121: 	
0122: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0123: 
0124: <html>
0125: <head>
0126: <title>March Madness - Picks</title>
0127: 	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
0128: 	<link href="mm.css" rel="stylesheet" type="text/css">
0129: 		<link href="https://mychinodes.org/desb.css" rel="stylesheet" type="text/css">	
0130: 	<script language="JavaScript">
0131: function ShowPickHelp()
0132: 		{
0133: 			x = 720;
0134: 			y = 800;
0135: 			var xpos = (screen.width - x)/2;
0136: 			var ypos = (screen.height - y)/2;
0137: 			var updateasp = "http://folga.org/ncaa/win7_ie10.htm";
0138: 			var w;
0139: 			w = window.open(updateasp,'update','width='+x+',height='+y+',top='+10+',left='+10);
0140: 		}	
0141: 
0142: 	
0143: 		function setTeams()	{
0144: 			var form = document.picks;
0145: 			form.game1.options[0].text = "(1)  <%= teamfield(0) %>";
0146: 			form.game1.options[1].text = "(16) <%= teamfield(15) %>";
0147: 			form.game2.options[0].text = "(8)  <%= teamfield(7) %>";
0148: 			form.game2.options[1].text = "(9)  <%= teamfield(8) %>";
0149: 			form.game3.options[0].text = "(5)  <%= teamfield(4) %>";
0150: 			form.game3.options[1].text = "(12) <%= teamfield(11) %>";
0151: 			form.game4.options[0].text = "(4)  <%= teamfield(3) %>";
0152: 			form.game4.options[1].text = "(13) <%= teamfield(12) %>";
0153: 			form.game5.options[0].text = "(6)  <%= teamfield(5) %>";
0154: 			form.game5.options[1].text = "(11) <%= teamfield(10) %>";
0155: 			form.game6.options[0].text = "(3)  <%= teamfield(2) %>";
0156: 			form.game6.options[1].text = "(14) <%= teamfield(13) %>";
0157: 			form.game7.options[0].text = "(7)  <%= teamfield(6) %>";
0158: 			form.game7.options[1].text = "(10) <%= teamfield(9) %>";
0159: 			form.game8.options[0].text = "(2)  <%= teamfield(1) %>";
0160: 			form.game8.options[1].text = "(15) <%= teamfield(14) %>";
0161: <%	If yesPicks Then	%>
0162: 				//fill all options boxes with selected teams
0163: 				//9-0
0164: 				if (form.game1.options[0].value == "<%= allpicks(0) %>")	{
0165: 					form.game1.selectedIndex = 0;	}
0166: 				if (form.game1.options[1].value == "<%= allpicks(0) %>")	{
0167: 					form.game1.selectedIndex = 1;	}
0168: 				rSelect('game1');
0169: 				//9-1
0170: 				if (form.game2.options[0].value == "<%= allpicks(1) %>")	{
0171: 					form.game2.selectedIndex = 0;	}
0172: 				if (form.game2.options[1].value == "<%= allpicks(1) %>")	{
0173: 					form.game2.selectedIndex = 1;	}
0174: 				rSelect('game2');
0175: 				//10-0
0176: 				if (form.game3.options[0].value == "<%= allpicks(2) %>")	{
0177: 					form.game3.selectedIndex = 0;	}
0178: 				if (form.game3.options[1].value == "<%= allpicks(2) %>")	{
0179: 					form.game3.selectedIndex = 1;	}
0180: 				rSelect('game3');
0181: 				//10-1
0182: 				if (form.game4.options[0].value == "<%= allpicks(3) %>")	{
0183: 					form.game4.selectedIndex = 0;	}
0184: 				if (form.game4.options[1].value == "<%= allpicks(3) %>")	{
0185: 					form.game4.selectedIndex = 1;	}
0186: 				rSelect('game4');
0187: 				//11-0
0188: 				if (form.game5.options[0].value == "<%= allpicks(4) %>")	{
0189: 					form.game5.selectedIndex = 0;	}
0190: 				if (form.game5.options[1].value == "<%= allpicks(4) %>")	{
0191: 					form.game5.selectedIndex = 1;	}
0192: 				rSelect('game5');
0193: 				//11-1
0194: 				if (form.game6.options[0].value == "<%= allpicks(5) %>")	{
0195: 					form.game6.selectedIndex = 0;	}
0196: 				if (form.game6.options[1].value == "<%= allpicks(5) %>")	{
0197: 					form.game6.selectedIndex = 1;	}
0198: 				rSelect('game6');
0199: 				//12-0
0200: 				if (form.game7.options[0].value == "<%= allpicks(6) %>")	{
0201: 					form.game7.selectedIndex = 0;	}
0202: 				if (form.game7.options[1].value == "<%= allpicks(6) %>")	{
0203: 					form.game7.selectedIndex = 1;	}
0204: 				rSelect('game7');
0205: 				//12-1
0206: 				if (form.game8.options[0].value == "<%= allpicks(7) %>")	{
0207: 					form.game8.selectedIndex = 0;	}
0208: 				if (form.game8.options[1].value == "<%= allpicks(7) %>")	{
0209: 					form.game8.selectedIndex = 1;	}
0210: 				rSelect('game8');
0211: 				//13-0
0212: 				if (form.game9.options[0].value == "<%= allpicks(8) %>")	{
0213: 					form.game9.selectedIndex = 0;	}
0214: 				if (form.game9.options[1].value == "<%= allpicks(8) %>")	{
0215: 					form.game9.selectedIndex = 1;	}
0216: 				rSelect('game9');
0217: 				//13-1
0218: 				if (form.game10.options[0].value == "<%= allpicks(9) %>")	{
0219: 					form.game10.selectedIndex = 0;	}
0220: 				if (form.game10.options[1].value == "<%= allpicks(9) %>")	{
0221: 					form.game10.selectedIndex = 1;	}
0222: 				rSelect('game10');
0223: 				//14-0
0224: 				if (form.game11.options[0].value == "<%= allpicks(10) %>")	{
0225: 					form.game11.selectedIndex = 0;	}
0226: 				if (form.game11.options[1].value == "<%= allpicks(10) %>")	{
0227: 					form.game11.selectedIndex = 1;	}
0228: 				rSelect('game11');
0229: 				//14-1
0230: 				if (form.game12.options[0].value == "<%= allpicks(11) %>")	{
0231: 					form.game12.selectedIndex = 0;	}
0232: 				if (form.game12.options[1].value == "<%= allpicks(11) %>")	{
0233: 					form.game12.selectedIndex = 1;	}
0234: 				rSelect('game12');
0235: 				//15-0
0236: 				if (form.game13.options[0].value == "<%= allpicks(12) %>")	{
0237: 					form.game13.selectedIndex = 0;	}
0238: 				if (form.game13.options[1].value == "<%= allpicks(12) %>")	{
0239: 					form.game13.selectedIndex = 1;	}
0240: 				rSelect('game13');
0241: 				//15-1
0242: 				if (form.game14.options[0].value == "<%= allpicks(13) %>")	{
0243: 					form.game14.selectedIndex = 0;	}
0244: 				if (form.game14.options[1].value == "<%= allpicks(13) %>")	{
0245: 					form.game14.selectedIndex = 1;	}
0246: 				rSelect('game14');
0247: 				//Winner
0248: 				if (form.game15.options[0].value == "<%= allpicks(14) %>")	{
0249: 					form.game15.selectedIndex = 0;	}
0250: 				if (form.game15.options[1].value == "<%= allpicks(14) %>")	{
0251: 					form.game15.selectedIndex = 1;	}
0252: <%	End If	%>
0253: 		}
0254: 	
0255: 		function rSelect(game)	{
0256: 			var form = document.picks;
0257: 			if (game == "game1")	{
0258: 				form.game9.options[0].text = form.game1.options[form.game1.selectedIndex].text;
0259: 				form.game9.options[0].value = form.game1.options[form.game1.selectedIndex].value;
0260: 				form.game9.selectedIndex = -1;
0261: 				form.game10.selectedIndex = -1;
0262: 				clearg13();
0263: 			}
0264: 			if (game == "game2")	{
0265: 				form.game9.options[1].text = form.game2.options[form.game2.selectedIndex].text;
0266: 				form.game9.options[1].value = form.game2.options[form.game2.selectedIndex].value;
0267: 				form.game9.selectedIndex = -1;
0268: 				form.game10.selectedIndex = -1;
0269: 				clearg13();
0270: 			}
0271: 			if (game == "game3")	{
0272: 				form.game10.options[0].text = form.game3.options[form.game3.selectedIndex].text;
0273: 				form.game10.options[0].value = form.game3.options[form.game3.selectedIndex].value;
0274: 				form.game9.selectedIndex = -1;
0275: 				form.game10.selectedIndex = -1;
0276: 				clearg13();
0277: 			}
0278: 			if (game == "game4")	{
0279: 				form.game10.options[1].text = form.game4.options[form.game4.selectedIndex].text;
0280: 				form.game10.options[1].value = form.game4.options[form.game4.selectedIndex].value;
0281: 				form.game9.selectedIndex = -1;
0282: 				form.game10.selectedIndex = -1;
0283: 				clearg13();
0284: 			}
0285: 			if (game == "game5")	{
0286: 				form.game11.options[0].text = form.game5.options[form.game5.selectedIndex].text;
0287: 				form.game11.options[0].value = form.game5.options[form.game5.selectedIndex].value;
0288: 				form.game11.selectedIndex = -1;
0289: 				form.game12.selectedIndex = -1;
0290: 				clearg14();
0291: 			}
0292: 			if (game == "game6")	{
0293: 				form.game11.options[1].text = form.game6.options[form.game6.selectedIndex].text;
0294: 				form.game11.options[1].value = form.game6.options[form.game6.selectedIndex].value;
0295: 				form.game11.selectedIndex = -1;
0296: 				form.game12.selectedIndex = -1;
0297: 				clearg14();
0298: 			}
0299: 			if (game == "game7")	{
0300: 				form.game12.options[0].text = form.game7.options[form.game7.selectedIndex].text;
0301: 				form.game12.options[0].value = form.game7.options[form.game7.selectedIndex].value;
0302: 				form.game11.selectedIndex = -1;
0303: 				form.game12.selectedIndex = -1;
0304: 				clearg14();
0305: 			}
0306: 			if (game == "game8")	{
0307: 				form.game12.options[1].text = form.game8.options[form.game8.selectedIndex].text;
0308: 				form.game12.options[1].value = form.game8.options[form.game8.selectedIndex].value;
0309: 				form.game11.selectedIndex = -1;
0310: 				form.game12.selectedIndex = -1;
0311: 				clearg14();
0312: 			}
0313: 			if (game == "game9")	{
0314: 				form.game13.options[0].text = form.game9.options[form.game9.selectedIndex].text;
0315: 				form.game13.options[0].value = form.game9.options[form.game9.selectedIndex].value;
0316: 				form.game13.selectedIndex = -1;
0317: 				form.game14.selectedIndex = -1;
0318: 				clearg15();
0319: 			}
0320: 			if (game == "game10")	{
0321: 				form.game13.options[1].text = form.game10.options[form.game10.selectedIndex].text;
0322: 				form.game13.options[1].value = form.game10.options[form.game10.selectedIndex].value;
0323: 				form.game13.selectedIndex = -1;
0324: 				form.game14.selectedIndex = -1;
0325: 				clearg15();
0326: 			}
0327: 			if (game == "game11")	{
0328: 				form.game14.options[0].text = form.game11.options[form.game11.selectedIndex].text;
0329: 				form.game14.options[0].value = form.game11.options[form.game11.selectedIndex].value;
0330: 				form.game13.selectedIndex = -1;
0331: 				form.game14.selectedIndex = -1;
0332: 				clearg15();
0333: 			}
0334: 			if (game == "game12")	{
0335: 				form.game14.options[1].text = form.game12.options[form.game12.selectedIndex].text;
0336: 				form.game14.options[1].value = form.game12.options[form.game12.selectedIndex].value;
0337: 				form.game13.selectedIndex = -1;
0338: 				form.game14.selectedIndex = -1;
0339: 				clearg15();
0340: 			}
0341: 			if (game == "game13")	{
0342: 				form.game15.options[0].text = form.game13.options[form.game13.selectedIndex].text;
0343: 				form.game15.options[0].value = form.game13.options[form.game13.selectedIndex].value;
0344: 				form.game15.selectedIndex = -1;
0345: 			}
0346: 			if (game == "game14")	{
0347: 				form.game15.options[1].text = form.game14.options[form.game14.selectedIndex].text;
0348: 				form.game15.options[1].value = form.game14.options[form.game14.selectedIndex].value;
0349: 				form.game15.selectedIndex = -1;
0350: 			}
0351: 		}
0352: 	
0353: 		function clearg13()	{
0354: 			var form = document.picks;
0355: 			form.game13.options[0].text = "";
0356: 			form.game13.options[0].value = "";
0357: 			form.game13.options[1].text = "";
0358: 			form.game13.options[1].value = "";
0359: 			form.game13.selectedIndex = -1;
0360: 			clearg15();
0361: 		}
0362: 	
0363: 		function clearg14()	{
0364: 			var form = document.picks;
0365: 			form.game14.options[0].text = "";
0366: 			form.game14.options[0].value = "";
0367: 			form.game14.options[1].text = "";
0368: 			form.game14.options[1].value = "";
0369: 			form.game14.selectedIndex = -1;
0370: 			clearg15();
0371: 		}
0372: 	
0373: 		function clearg15()	{
0374: 			var form = document.picks;
0375: 			form.game15.options[0].text = "";
0376: 			form.game15.options[0].value = "";
0377: 			form.game15.options[1].text = "";
0378: 			form.game15.options[1].value = "";
0379: 			form.game15.selectedIndex = -1;
0380: 		}
0381: 	
0382: 		function checkSel()	{
0383: 			var form = document.picks;
0384: 			for (i = 0; i < form.elements.length; i++)	{
0385: 				if (form.elements[i].type == "select-one" && form.elements[i].selectedIndex == -1)	{
0386: 					alert("Please select winners for ALL games before moving onto the Next Section");
0387: 					return false;
0388: 				}
0389: 			}
0390: 			return true;		
0391: 		}
0392: 		
0393: 	</script>
0394: </head>
0395: 
0396: <body bgcolor="#ffffff" onload="setTeams()">
0397: 
0398: <form name="picks" method="post" action="picks2demo.asp" onSubmit="return checkSel()">	
0399: 	<input type="hidden" name="region" value="<%= region %>">
0400: <table width="723" border="0" cellpadding="0" cellspacing="0">
0401: 		<tr>			<td class="norm" colspan="15"><font color="#FF0000"><b>DEMO Only</b></font> - Repeat this process 4 times (once for each region)</big>&nbsp;&nbsp;
0402: 			<font color="#ff0000">&nbsp;<b>(Real picks can be made after <%= selsunday %>)<br><br>&nbsp;&nbsp;&nbsp;&nbsp;
0403: 		
0404: <% If IsWindows = 0 Then %>
0405: <font color="green"></B><BIG><I>(Click on down arrow to show teams)
0406: <% Else %>
0407: <font color="green"></B><BIG><I>(Click team name you think will advance in each game)
0408: <% End If %>
0409: 			</font></font></td></tr>
0410: 		<tr><td align="center" colspan="13" class="space"></td></tr>
0411: 		<tr height="1">
0412: 			<td align="center" class="medbold">&nbsp;</td>
0413: 			<td colspan="3" class="medbold">&nbsp;</td>
0414: 			<td align="center" class="medbold">&nbsp;</td>
0415: 			<td colspan="3" class="medbold">&nbsp;</td>
0416: 			<td align="center" colspan="5" class="medbold">&nbsp;</td>
0417: 		</tr>
0418: 
0419: 
0420: 		<tr>
0421: 			<td width="150" rowspan="3" align="right" class="norm">
0422:         <select name="game1" size="2" style="width:150;" onChange="rSelect('game1')" class="norm">
0423:           <option value="01"></option>
0424:           <option value="16"></option>
0425:         </select>
0426: 			</td>
0427: 			<td width="20">&nbsp;</td>
0428: 			<td width="1"><img src="images/clear.gif" height="1" width="1"></td>
0429: 			<td width="20">&nbsp;</td>
0430: 			<td width="150">&nbsp;</td>
0431: 			<td width="20">&nbsp;</td>
0432: 			<td width="1"><img src="images/clear.gif" height="1" width="1"></td>
0433: 			<td width="20">&nbsp;</td>
0434: 			<td width="150">&nbsp;</td>
0435: 			<td width="20">&nbsp;</td>
0436: 			<td width="1"><img src="images/clear.gif" height="1" width="1"></td>
0437: 			<td width="20">&nbsp;</td>
0438: 			<td width="150">&nbsp;</td>
0439: 		</tr>
0440: 		<tr>
0441: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0442: 			<td height="1" rowspan="5" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0443: 			<td height="1"><img src="images/clear.gif" height="1" width="1"></td>
0444: 			<td height="1" colspan="9"><img src="images/clear.gif" height="1" width="1"></td>
0445: 		</tr>
0446: 		<tr>
0447: 			<td>&nbsp;</td>
0448: 			<td>&nbsp;</td>
0449: 			<td rowspan="3" align="right">
0450:         <select name="game9" size="2" style="width:150;" onChange="rSelect('game9')">
0451:           <option value=""></option>
0452:           <option value=""></option>
0453:         </select>
0454: 			</td>
0455: 			<td colspan="8">&nbsp;</td>
0456: 		</tr>
0457: 		<tr>
0458: 			<td colspan="2" height="1"><img src="images/clear.gif" height="1" width="1"></td>
0459: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0460: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0461: 			<td rowspan="9" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0462: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0463: 		</tr>
0464: 		<tr>
0465: 			<td rowspan="3">
0466:         <select name="game2" size="2" style="width:150;" onChange="rSelect('game2')">
0467:           <option value="08"></option>
0468:           <option value="09"></option>
0469:         </select>
0470: 			</td>
0471: 			<td>&nbsp;</td>
0472: 			<td>&nbsp;</td>
0473: 			<td>&nbsp;</td>
0474: 			<td colspan="6">&nbsp;</td>
0475: 		</tr>
0476: 		<tr>
0477: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0478: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0479: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0480: 		</tr>
0481: 		<tr>
0482: 			<td colspan="5">&nbsp;</td>
0483: 			<td>&nbsp;</td>
0484: 			<td rowspan="3">
0485: 				<select name="game13" size="2" style="width:150;" onChange="rSelect('game13')">
0486:           <option value=""></option>
0487:           <option value=""></option>
0488:         </select>
0489: 			</td>
0490: 			<td colspan="4">&nbsp;</td>
0491: 		</tr>
0492: 		<tr>
0493: 			<td height="1" colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0494: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0495: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0496: 			<td rowspan="17" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0497: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0498: 		</tr>
0499: 		<tr>
0500: 			<td rowspan="3">
0501:         <select name="game3" size="2" style="width:150;" onChange="rSelect('game3')">
0502:           <option value="05"></option>
0503:           <option value="12"></option>
0504:         </select>
0505: 			</td>
0506: 			<td colspan="5">&nbsp;</td>
0507: 			<td>&nbsp;</td>
0508: 			<td>&nbsp;</td>
0509: 			<td colspan="2">&nbsp;</td>
0510: 		</tr>
0511: 		<tr>
0512: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0513: 			<td rowspan="5" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0514: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0515: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0516: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0517: 		</tr>
0518: 		<tr>
0519: 			<td>&nbsp;</td>
0520: 			<td>&nbsp;</td>
0521: 			<td rowspan="3">
0522:         <select name="game10" size="2" style="width:150;" onChange="rSelect('game10')">
0523:           <option value=""></option>
0524:           <option value=""></option>
0525:         </select>
0526: 			</td>
0527: 			<td>&nbsp;</td>
0528: 			<td colspan="3">&nbsp;</td>
0529: 			<td colspan="2">&nbsp;</td>
0530: 		</tr>
0531: 		<tr>
0532: 			<td colspan="2" height="1"><img src="images/clear.gif" height="1" width="1"></td>
0533: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0534: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0535: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0536: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0537: 		</tr>
0538: 		<tr>
0539: 			<td rowspan="3">
0540:         <select name="game4" size="2" style="width:150;" onChange="rSelect('game4')">
0541:           <option value="04"></option>
0542:           <option value="13"></option>
0543:         </select>
0544: 			</td>
0545: 			<td>&nbsp;</td>
0546: 			<td>&nbsp;</td>
0547: 			<td colspan="5">&nbsp;</td>
0548: 			<td colspan="2">&nbsp;</td>
0549: 		</tr>
0550: 		<tr>
0551: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0552: 			<td colspan="7"><img src="images/clear.gif" height="1" width="1"></td>
0553: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0554: 		</tr>
0555: 		<tr>
0556: 			<td colspan="9">&nbsp;</td>
0557: 			<td>&nbsp;</td>
0558: 			<td rowspan="3">
0559:         <select name="game15" size="2" style="width:150;">
0560:           <option value=""></option>
0561:           <option value=""></option>
0562:         </select>
0563: 			</td>
0564: 		</tr>
0565: 		<tr>
0566: 			<td colspan="10" height="1"><img src="images/clear.gif" height="1" width="1"></td>
0567: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0568: 		</tr>
0569: 		<tr>
0570: 			<td rowspan="3">
0571:         <select name="game5" size="2" style="width:150;" onChange="rSelect('game5')">
0572:           <option value="06"></option>
0573:           <option value="11"></option>
0574:         </select>
0575: 			</td>
0576: 			<td colspan="9">&nbsp;</td>
0577: 			<td>&nbsp;</td>
0578: 		</tr>
0579: 		<tr>
0580: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0581: 			<td rowspan="5" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0582: 			<td colspan="7"><img src="images/clear.gif" height="1" width="1"></td>
0583: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0584: 		</tr>
0585: 		<tr>
0586: 			<td>&nbsp;</td>
0587: 			<td>&nbsp;</td>
0588: 			<td rowspan="3">
0589:         <select name="game11" size="2" style="width:150;" onChange="rSelect('game11')">
0590:           <option value=""></option>
0591:           <option value=""></option>
0592:         </select>
0593: 			</td>
0594: 			<td colspan="5">&nbsp;</td>
0595: 			<td colspan="2">&nbsp;</td>
0596: 		</tr>
0597: 		<tr>
0598: 			<td height="1" colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0599: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0600: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0601: 			<td rowspan="9" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0602: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0603: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0604: 		</tr>
0605: 		<tr>
0606: 			<td rowspan="3">
0607:         <select name="game6" size="2" style="width:150;" onChange="rSelect('game6')">
0608:           <option value="03"></option>
0609:           <option value="14"></option>
0610:         </select>
0611: 			</td>
0612: 			<td>&nbsp;</td>
0613: 			<td>&nbsp;</td>
0614: 			<td>&nbsp;</td>
0615: 			<td colspan="3">&nbsp;</td>
0616: 			<td colspan="2" align="center" class="norm">
0617: <%	If button1 <> "" Then	%>
0618: 					<!input type="submit" name="submit" value="<- Back (<%= button1 %>)" class="norm">
0619: <%	Else	%>
0620: 					&nbsp;
0621: <%	End If	%>
0622: 			</td>
0623: 		</tr>
0624: 		
0625: 		<tr>
0626: 			<td headers="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0627: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0628: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0629: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0630: 		</tr>
0631: 		<tr>
0632: 			<td colspan="5">&nbsp;</td>
0633: 			<td>&nbsp;</td>
0634: 			<td rowspan="3">
0635:         <select name="game14" size="2" style="width:150;" onChange="rSelect('game14')">
0636:           <option value=""></option>
0637:           <option value=""></option>
0638:         </select>
0639: 			</td>
0640: 			<td>&nbsp;</td>
0641: 			<td colspan="2" align="center" class="norm">
0642: 				<input type="submit" name="submit" value="Next (<%= button2 %>) ->" class="button-40">
0643: 			</td>
0644: 		</tr>
0645: 		<tr>
0646: 			<td height="1" colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0647: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0648: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0649: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0650: 		</tr>
0651: 		<tr>
0652: 			<td rowspan="3">
0653:         <select name="game7" size="2" style="width:150;" onChange="rSelect('game7')">
0654:           <option value="07"></option>
0655:           <option value="10"></option>
0656:         </select>
0657: 			</td>
0658: 			<td colspan="5">&nbsp;</td>
0659: 			<td>&nbsp;</td>
0660: 			<td colspan="4">&nbsp;</td>
0661: 		</tr>
0662: 		<tr>
0663: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0664: 			<td bgcolor="<%= linecolor %>" rowspan="5"><img src="images/clear.gif" height="1" width="1"></td>
0665: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0666: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0667: 		</tr>
0668: 		<tr>
0669: 			<td>&nbsp;</td>
0670: 			<td>&nbsp;</td>
0671: 			<td rowspan="3">
0672:         <select name="game12" size="2" style="width:150;" onChange="rSelect('game12')">
0673:           <option value=""></option>
0674:           <option value=""></option>
0675:         </select>
0676: 			</td>
0677: 			<td>&nbsp;</td>
0678: 			<td colspan="6">
0679: 			<p align="right"><i><b><font face="Arial" size="2" color="#800080">(Click on the team you think will win the game)</font>
0680: 			</b></i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </td>
0681: 		</tr>
0682: 		<tr>
0683: 			<td height="1" colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0684: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0685: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0686: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0687: 		</tr>
0688: 		<tr>
0689: 			<td rowspan="3">
0690:         <select name="game8" size="2" style="width:150;" onChange="rSelect('game8')">
0691:           <option value="02"></option>
0692:           <option value="15"></option>
0693:         </select>
0694: 			</td>
0695: 			<td>&nbsp;</td>
0696: 			<td>&nbsp;</td>
0697: 			<td colspan="8">&nbsp;</td>
0698: 		</tr>
0699: 		<tr>
0700: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0701: 			<td colspan="10"><img src="images/clear.gif" height="1" width="1"></td>
0702: 		</tr>
0703: 		<tr><td colspan="12">&nbsp;</td></tr>
0704: <% If ShowHelp <> "" Then %>
0705: 		<tr><td>&nbsp;</td></tr>
0706: 		<tr><td>&nbsp;</td><td colspan="12" class="norm"><big>If you are have problems selecting you teams, click <a href="javascript:ShowPickHelp()">here</a></td>
0707: 		</tr>
0708: <% End If %>
0709: 		</table>
0710: </form>
0711: 
0712: </body>
0713: </html>
0714: 
0715: 
0716: 
0717: 
0718: 
0719: 
0720: 
0721: