Count Lines in Pages

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