Count Lines in Pages

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