Count Lines in Pages

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