Count Lines in Pages

Contents of Page: picks1n.asp Number of Lines: 676 Last Modified: 8/22/2018 1:33:05 PM
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: 
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: 	
0102: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0103: 
0104: <html>
0105: <head>
0106: <title>March Madness - Picks</title>
0107: 	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
0108: 	<link href="mm.css" rel="stylesheet" type="text/css">
0109: 	<script language="JavaScript">
0110: 	
0111: 		function setTeams()	{
0112: 			var form = document.picks;
0113: 			form.game1.options[0].text = "(1)  <%= teamfield(0) %>";
0114: 			form.game1.options[1].text = "(16) <%= teamfield(15) %>";
0115: 			form.game2.options[0].text = "(8)  <%= teamfield(7) %>";
0116: 			form.game2.options[1].text = "(9)  <%= teamfield(8) %>";
0117: 			form.game3.options[0].text = "(5)  <%= teamfield(4) %>";
0118: 			form.game3.options[1].text = "(12) <%= teamfield(11) %>";
0119: 			form.game4.options[0].text = "(4)  <%= teamfield(3) %>";
0120: 			form.game4.options[1].text = "(13) <%= teamfield(12) %>";
0121: 			form.game5.options[0].text = "(6)  <%= teamfield(5) %>";
0122: 			form.game5.options[1].text = "(11) <%= teamfield(10) %>";
0123: 			form.game6.options[0].text = "(3)  <%= teamfield(2) %>";
0124: 			form.game6.options[1].text = "(14) <%= teamfield(13) %>";
0125: 			form.game7.options[0].text = "(7)  <%= teamfield(6) %>";
0126: 			form.game7.options[1].text = "(10) <%= teamfield(9) %>";
0127: 			form.game8.options[0].text = "(2)  <%= teamfield(1) %>";
0128: 			form.game8.options[1].text = "(15) <%= teamfield(14) %>";
0129: <%	If yesPicks Then	%>
0130: 				//fill all options boxes with selected teams
0131: 				//9-0
0132: 				if (form.game1.options[0].value == "<%= allpicks(0) %>")	{
0133: 					form.game1.selectedIndex = 0;	}
0134: 				if (form.game1.options[1].value == "<%= allpicks(0) %>")	{
0135: 					form.game1.selectedIndex = 1;	}
0136: 				rSelect('game1');
0137: 				//9-1
0138: 				if (form.game2.options[0].value == "<%= allpicks(1) %>")	{
0139: 					form.game2.selectedIndex = 0;	}
0140: 				if (form.game2.options[1].value == "<%= allpicks(1) %>")	{
0141: 					form.game2.selectedIndex = 1;	}
0142: 				rSelect('game2');
0143: 				//10-0
0144: 				if (form.game3.options[0].value == "<%= allpicks(2) %>")	{
0145: 					form.game3.selectedIndex = 0;	}
0146: 				if (form.game3.options[1].value == "<%= allpicks(2) %>")	{
0147: 					form.game3.selectedIndex = 1;	}
0148: 				rSelect('game3');
0149: 				//10-1
0150: 				if (form.game4.options[0].value == "<%= allpicks(3) %>")	{
0151: 					form.game4.selectedIndex = 0;	}
0152: 				if (form.game4.options[1].value == "<%= allpicks(3) %>")	{
0153: 					form.game4.selectedIndex = 1;	}
0154: 				rSelect('game4');
0155: 				//11-0
0156: 				if (form.game5.options[0].value == "<%= allpicks(4) %>")	{
0157: 					form.game5.selectedIndex = 0;	}
0158: 				if (form.game5.options[1].value == "<%= allpicks(4) %>")	{
0159: 					form.game5.selectedIndex = 1;	}
0160: 				rSelect('game5');
0161: 				//11-1
0162: 				if (form.game6.options[0].value == "<%= allpicks(5) %>")	{
0163: 					form.game6.selectedIndex = 0;	}
0164: 				if (form.game6.options[1].value == "<%= allpicks(5) %>")	{
0165: 					form.game6.selectedIndex = 1;	}
0166: 				rSelect('game6');
0167: 				//12-0
0168: 				if (form.game7.options[0].value == "<%= allpicks(6) %>")	{
0169: 					form.game7.selectedIndex = 0;	}
0170: 				if (form.game7.options[1].value == "<%= allpicks(6) %>")	{
0171: 					form.game7.selectedIndex = 1;	}
0172: 				rSelect('game7');
0173: 				//12-1
0174: 				if (form.game8.options[0].value == "<%= allpicks(7) %>")	{
0175: 					form.game8.selectedIndex = 0;	}
0176: 				if (form.game8.options[1].value == "<%= allpicks(7) %>")	{
0177: 					form.game8.selectedIndex = 1;	}
0178: 				rSelect('game8');
0179: 				//13-0
0180: 				if (form.game9.options[0].value == "<%= allpicks(8) %>")	{
0181: 					form.game9.selectedIndex = 0;	}
0182: 				if (form.game9.options[1].value == "<%= allpicks(8) %>")	{
0183: 					form.game9.selectedIndex = 1;	}
0184: 				rSelect('game9');
0185: 				//13-1
0186: 				if (form.game10.options[0].value == "<%= allpicks(9) %>")	{
0187: 					form.game10.selectedIndex = 0;	}
0188: 				if (form.game10.options[1].value == "<%= allpicks(9) %>")	{
0189: 					form.game10.selectedIndex = 1;	}
0190: 				rSelect('game10');
0191: 				//14-0
0192: 				if (form.game11.options[0].value == "<%= allpicks(10) %>")	{
0193: 					form.game11.selectedIndex = 0;	}
0194: 				if (form.game11.options[1].value == "<%= allpicks(10) %>")	{
0195: 					form.game11.selectedIndex = 1;	}
0196: 				rSelect('game11');
0197: 				//14-1
0198: 				if (form.game12.options[0].value == "<%= allpicks(11) %>")	{
0199: 					form.game12.selectedIndex = 0;	}
0200: 				if (form.game12.options[1].value == "<%= allpicks(11) %>")	{
0201: 					form.game12.selectedIndex = 1;	}
0202: 				rSelect('game12');
0203: 				//15-0
0204: 				if (form.game13.options[0].value == "<%= allpicks(12) %>")	{
0205: 					form.game13.selectedIndex = 0;	}
0206: 				if (form.game13.options[1].value == "<%= allpicks(12) %>")	{
0207: 					form.game13.selectedIndex = 1;	}
0208: 				rSelect('game13');
0209: 				//15-1
0210: 				if (form.game14.options[0].value == "<%= allpicks(13) %>")	{
0211: 					form.game14.selectedIndex = 0;	}
0212: 				if (form.game14.options[1].value == "<%= allpicks(13) %>")	{
0213: 					form.game14.selectedIndex = 1;	}
0214: 				rSelect('game14');
0215: 				//Winner
0216: 				if (form.game15.options[0].value == "<%= allpicks(14) %>")	{
0217: 					form.game15.selectedIndex = 0;	}
0218: 				if (form.game15.options[1].value == "<%= allpicks(14) %>")	{
0219: 					form.game15.selectedIndex = 1;	}
0220: <%	End If	%>
0221: 		}
0222: 	
0223: 		function rSelect(game)	{
0224: 			var form = document.picks;
0225: 			if (game == "game1")	{
0226: 				form.game9.options[0].text = form.game1.options[form.game1.selectedIndex].text;
0227: 				form.game9.options[0].value = form.game1.options[form.game1.selectedIndex].value;
0228: 				form.game9.selectedIndex = -1;
0229: 				form.game10.selectedIndex = -1;
0230: 				clearg13();
0231: 			}
0232: 			if (game == "game2")	{
0233: 				form.game9.options[1].text = form.game2.options[form.game2.selectedIndex].text;
0234: 				form.game9.options[1].value = form.game2.options[form.game2.selectedIndex].value;
0235: 				form.game9.selectedIndex = -1;
0236: 				form.game10.selectedIndex = -1;
0237: 				clearg13();
0238: 			}
0239: 			if (game == "game3")	{
0240: 				form.game10.options[0].text = form.game3.options[form.game3.selectedIndex].text;
0241: 				form.game10.options[0].value = form.game3.options[form.game3.selectedIndex].value;
0242: 				form.game9.selectedIndex = -1;
0243: 				form.game10.selectedIndex = -1;
0244: 				clearg13();
0245: 			}
0246: 			if (game == "game4")	{
0247: 				form.game10.options[1].text = form.game4.options[form.game4.selectedIndex].text;
0248: 				form.game10.options[1].value = form.game4.options[form.game4.selectedIndex].value;
0249: 				form.game9.selectedIndex = -1;
0250: 				form.game10.selectedIndex = -1;
0251: 				clearg13();
0252: 			}
0253: 			if (game == "game5")	{
0254: 				form.game11.options[0].text = form.game5.options[form.game5.selectedIndex].text;
0255: 				form.game11.options[0].value = form.game5.options[form.game5.selectedIndex].value;
0256: 				form.game11.selectedIndex = -1;
0257: 				form.game12.selectedIndex = -1;
0258: 				clearg14();
0259: 			}
0260: 			if (game == "game6")	{
0261: 				form.game11.options[1].text = form.game6.options[form.game6.selectedIndex].text;
0262: 				form.game11.options[1].value = form.game6.options[form.game6.selectedIndex].value;
0263: 				form.game11.selectedIndex = -1;
0264: 				form.game12.selectedIndex = -1;
0265: 				clearg14();
0266: 			}
0267: 			if (game == "game7")	{
0268: 				form.game12.options[0].text = form.game7.options[form.game7.selectedIndex].text;
0269: 				form.game12.options[0].value = form.game7.options[form.game7.selectedIndex].value;
0270: 				form.game11.selectedIndex = -1;
0271: 				form.game12.selectedIndex = -1;
0272: 				clearg14();
0273: 			}
0274: 			if (game == "game8")	{
0275: 				form.game12.options[1].text = form.game8.options[form.game8.selectedIndex].text;
0276: 				form.game12.options[1].value = form.game8.options[form.game8.selectedIndex].value;
0277: 				form.game11.selectedIndex = -1;
0278: 				form.game12.selectedIndex = -1;
0279: 				clearg14();
0280: 			}
0281: 			if (game == "game9")	{
0282: 				form.game13.options[0].text = form.game9.options[form.game9.selectedIndex].text;
0283: 				form.game13.options[0].value = form.game9.options[form.game9.selectedIndex].value;
0284: 				form.game13.selectedIndex = -1;
0285: 				form.game14.selectedIndex = -1;
0286: 				clearg15();
0287: 			}
0288: 			if (game == "game10")	{
0289: 				form.game13.options[1].text = form.game10.options[form.game10.selectedIndex].text;
0290: 				form.game13.options[1].value = form.game10.options[form.game10.selectedIndex].value;
0291: 				form.game13.selectedIndex = -1;
0292: 				form.game14.selectedIndex = -1;
0293: 				clearg15();
0294: 			}
0295: 			if (game == "game11")	{
0296: 				form.game14.options[0].text = form.game11.options[form.game11.selectedIndex].text;
0297: 				form.game14.options[0].value = form.game11.options[form.game11.selectedIndex].value;
0298: 				form.game13.selectedIndex = -1;
0299: 				form.game14.selectedIndex = -1;
0300: 				clearg15();
0301: 			}
0302: 			if (game == "game12")	{
0303: 				form.game14.options[1].text = form.game12.options[form.game12.selectedIndex].text;
0304: 				form.game14.options[1].value = form.game12.options[form.game12.selectedIndex].value;
0305: 				form.game13.selectedIndex = -1;
0306: 				form.game14.selectedIndex = -1;
0307: 				clearg15();
0308: 			}
0309: 			if (game == "game13")	{
0310: 				form.game15.options[0].text = form.game13.options[form.game13.selectedIndex].text;
0311: 				form.game15.options[0].value = form.game13.options[form.game13.selectedIndex].value;
0312: 				form.game15.selectedIndex = -1;
0313: 			}
0314: 			if (game == "game14")	{
0315: 				form.game15.options[1].text = form.game14.options[form.game14.selectedIndex].text;
0316: 				form.game15.options[1].value = form.game14.options[form.game14.selectedIndex].value;
0317: 				form.game15.selectedIndex = -1;
0318: 			}
0319: 		}
0320: 	
0321: 		function clearg13()	{
0322: 			var form = document.picks;
0323: 			form.game13.options[0].text = "";
0324: 			form.game13.options[0].value = "";
0325: 			form.game13.options[1].text = "";
0326: 			form.game13.options[1].value = "";
0327: 			form.game13.selectedIndex = -1;
0328: 			clearg15();
0329: 		}
0330: 	
0331: 		function clearg14()	{
0332: 			var form = document.picks;
0333: 			form.game14.options[0].text = "";
0334: 			form.game14.options[0].value = "";
0335: 			form.game14.options[1].text = "";
0336: 			form.game14.options[1].value = "";
0337: 			form.game14.selectedIndex = -1;
0338: 			clearg15();
0339: 		}
0340: 	
0341: 		function clearg15()	{
0342: 			var form = document.picks;
0343: 			form.game15.options[0].text = "";
0344: 			form.game15.options[0].value = "";
0345: 			form.game15.options[1].text = "";
0346: 			form.game15.options[1].value = "";
0347: 			form.game15.selectedIndex = -1;
0348: 		}
0349: 	
0350: 		function checkSel()	{
0351: 			var form = document.picks;
0352: 			for (i = 0; i < form.elements.length; i++)	{
0353: 				if (form.elements[i].type == "select-one" && form.elements[i].selectedIndex == -1)	{
0354: 					alert("Please select winners in all brackets before moving onto the Next Section");
0355: 					return false;
0356: 				}
0357: 			}
0358: 			return true;		
0359: 		}
0360: 		
0361: 	</script>
0362: </head>
0363: 
0364: <body bgcolor="#ffffff" onload="setTeams()">
0365: 
0366: <form name="picks" method="post" action="picks_saveTemp.asp" onSubmit="return checkSel()">	
0367: 	<input type="hidden" name="region" value="<%= region %>">
0368: 	<table width="723" border="0" cellpadding="0" cellspacing="0" align="center">
0369: 		<tr><td align="center" colspan="13" class="medbold"><%= venue %></td></tr>
0370: 		<tr><td align="center" colspan="13" class="space"></td></tr>
0371: 		<tr>
0372: 			<td align="center" class="medbold">First Round</td>
0373: 			<td colspan="3" class="medbold">&nbsp;</td>
0374: 			<td align="center" class="medbold">Second Round</td>
0375: 			<td colspan="3" class="medbold">&nbsp;</td>
0376: 			<td align="center" colspan="5" class="medbold">Regionals</td>
0377: 		</tr>
0378: 		<tr><td align="center" colspan="13" class="space">&nbsp;</td></tr>
0379: 		<tr><td align="center" colspan="13" class="space"><font color="#000000">
0380: 			<span style="font-size: 9pt; font-style: italic; font-weight: 700">
0381: 			(Click on team name you think will advance in each game)</span></font></td></tr>
0382: 		<tr>
0383: 			<td width="150" rowspan="3" align="right" class="norm">
0384:         <select name="game1" size="2" style="width:150;" onChange="rSelect('game1')" class="norm">
0385:           <option value="01"></option>
0386:           <option value="16"></option>
0387:         </select>
0388: 			</td>
0389: 			<td width="20">&nbsp;</td>
0390: 			<td width="1"><img src="images/clear.gif" height="1" width="1"></td>
0391: 			<td width="20">&nbsp;</td>
0392: 			<td width="150">&nbsp;</td>
0393: 			<td width="20">&nbsp;</td>
0394: 			<td width="1"><img src="images/clear.gif" height="1" width="1"></td>
0395: 			<td width="20">&nbsp;</td>
0396: 			<td width="150">&nbsp;</td>
0397: 			<td width="20">&nbsp;</td>
0398: 			<td width="1"><img src="images/clear.gif" height="1" width="1"></td>
0399: 			<td width="20">&nbsp;</td>
0400: 			<td width="150">&nbsp;</td>
0401: 		</tr>
0402: 		<tr>
0403: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0404: 			<td height="1" rowspan="5" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0405: 			<td height="1"><img src="images/clear.gif" height="1" width="1"></td>
0406: 			<td height="1" colspan="9"><img src="images/clear.gif" height="1" width="1"></td>
0407: 		</tr>
0408: 		<tr>
0409: 			<td>&nbsp;</td>
0410: 			<td>&nbsp;</td>
0411: 			<td rowspan="3" align="right">
0412:         <select name="game9" size="2" style="width:150;" onChange="rSelect('game9')">
0413:           <option value=""></option>
0414:           <option value=""></option>
0415:         </select>
0416: 			</td>
0417: 			<td colspan="8">&nbsp;</td>
0418: 		</tr>
0419: 		<tr>
0420: 			<td colspan="2" height="1"><img src="images/clear.gif" height="1" width="1"></td>
0421: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0422: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0423: 			<td rowspan="9" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0424: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0425: 		</tr>
0426: 		<tr>
0427: 			<td rowspan="3">
0428:         <select name="game2" size="2" style="width:150;" onChange="rSelect('game2')">
0429:           <option value="08"></option>
0430:           <option value="09"></option>
0431:         </select>
0432: 			</td>
0433: 			<td>&nbsp;</td>
0434: 			<td>&nbsp;</td>
0435: 			<td>&nbsp;</td>
0436: 			<td colspan="6">&nbsp;</td>
0437: 		</tr>
0438: 		<tr>
0439: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0440: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0441: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0442: 		</tr>
0443: 		<tr>
0444: 			<td colspan="5">&nbsp;</td>
0445: 			<td>&nbsp;</td>
0446: 			<td rowspan="3">
0447: 				<select name="game13" size="2" style="width:150;" onChange="rSelect('game13')">
0448:           <option value=""></option>
0449:           <option value=""></option>
0450:         </select>
0451: 			</td>
0452: 			<td colspan="4">&nbsp;</td>
0453: 		</tr>
0454: 		<tr>
0455: 			<td height="1" colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0456: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0457: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0458: 			<td rowspan="17" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0459: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0460: 		</tr>
0461: 		<tr>
0462: 			<td rowspan="3">
0463:         <select name="game3" size="2" style="width:150;" onChange="rSelect('game3')">
0464:           <option value="05"></option>
0465:           <option value="12"></option>
0466:         </select>
0467: 			</td>
0468: 			<td colspan="5">&nbsp;</td>
0469: 			<td>&nbsp;</td>
0470: 			<td>&nbsp;</td>
0471: 			<td colspan="2">&nbsp;</td>
0472: 		</tr>
0473: 		<tr>
0474: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0475: 			<td rowspan="5" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0476: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0477: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0478: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0479: 		</tr>
0480: 		<tr>
0481: 			<td>&nbsp;</td>
0482: 			<td>&nbsp;</td>
0483: 			<td rowspan="3">
0484:         <select name="game10" size="2" style="width:150;" onChange="rSelect('game10')">
0485:           <option value=""></option>
0486:           <option value=""></option>
0487:         </select>
0488: 			</td>
0489: 			<td>&nbsp;</td>
0490: 			<td colspan="3">&nbsp;</td>
0491: 			<td colspan="2">&nbsp;</td>
0492: 		</tr>
0493: 		<tr>
0494: 			<td colspan="2" height="1"><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 bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0497: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0498: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0499: 		</tr>
0500: 		<tr>
0501: 			<td rowspan="3">
0502:         <select name="game4" size="2" style="width:150;" onChange="rSelect('game4')">
0503:           <option value="04"></option>
0504:           <option value="13"></option>
0505:         </select>
0506: 			</td>
0507: 			<td>&nbsp;</td>
0508: 			<td>&nbsp;</td>
0509: 			<td colspan="5">&nbsp;</td>
0510: 			<td colspan="2">&nbsp;</td>
0511: 		</tr>
0512: 		<tr>
0513: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0514: 			<td colspan="7"><img src="images/clear.gif" height="1" width="1"></td>
0515: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0516: 		</tr>
0517: 		<tr>
0518: 			<td colspan="9">&nbsp;</td>
0519: 			<td>&nbsp;</td>
0520: 			<td rowspan="3">
0521:         <select name="game15" size="2" style="width:150;">
0522:           <option value=""></option>
0523:           <option value=""></option>
0524:         </select>
0525: 			</td>
0526: 		</tr>
0527: 		<tr>
0528: 			<td colspan="10" 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: 		</tr>
0531: 		<tr>
0532: 			<td rowspan="3">
0533:         <select name="game5" size="2" style="width:150;" onChange="rSelect('game5')">
0534:           <option value="06"></option>
0535:           <option value="11"></option>
0536:         </select>
0537: 			</td>
0538: 			<td colspan="9">&nbsp;</td>
0539: 			<td>&nbsp;</td>
0540: 		</tr>
0541: 		<tr>
0542: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0543: 			<td rowspan="5" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0544: 			<td colspan="7"><img src="images/clear.gif" height="1" width="1"></td>
0545: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0546: 		</tr>
0547: 		<tr>
0548: 			<td>&nbsp;</td>
0549: 			<td>&nbsp;</td>
0550: 			<td rowspan="3">
0551:         <select name="game11" size="2" style="width:150;" onChange="rSelect('game11')">
0552:           <option value=""></option>
0553:           <option value=""></option>
0554:         </select>
0555: 			</td>
0556: 			<td colspan="5">&nbsp;</td>
0557: 			<td colspan="2">&nbsp;</td>
0558: 		</tr>
0559: 		<tr>
0560: 			<td height="1" colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0561: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0562: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0563: 			<td rowspan="9" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0564: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0565: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0566: 		</tr>
0567: 		<tr>
0568: 			<td rowspan="3">
0569:         <select name="game6" size="2" style="width:150;" onChange="rSelect('game6')">
0570:           <option value="03"></option>
0571:           <option value="14"></option>
0572:         </select>
0573: 			</td>
0574: 			<td>&nbsp;</td>
0575: 			<td>&nbsp;</td>
0576: 			<td>&nbsp;</td>
0577: 			<td colspan="3">&nbsp;</td>
0578: 			<td colspan="2" align="center" class="norm">
0579: <%	If button1 <> "" Then	%>
0580: 					<input type="submit" name="submit" value="<- Back (<%= button1 %>)" class="norm">
0581: <%	Else	%>
0582: 					&nbsp;
0583: <%	End If	%>
0584: 			</td>
0585: 		</tr>
0586: 		
0587: 		<tr>
0588: 			<td headers="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0589: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0590: 			<td colspan="3"><img src="images/clear.gif" height="1" width="1"></td>
0591: 			<td colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0592: 		</tr>
0593: 		<tr>
0594: 			<td colspan="5">&nbsp;</td>
0595: 			<td>&nbsp;</td>
0596: 			<td rowspan="3">
0597:         <select name="game14" size="2" style="width:150;" onChange="rSelect('game14')">
0598:           <option value=""></option>
0599:           <option value=""></option>
0600:         </select>
0601: 			</td>
0602: 			<td>&nbsp;</td>
0603: 			<td colspan="2" align="center" class="norm">
0604: 				<input type="submit" name="submit" value="Next (<%= button2 %>) ->" class="norm">
0605: 			</td>
0606: 		</tr>
0607: 		<tr>
0608: 			<td height="1" colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0609: 			<td bgcolor="<%= linecolor %>"><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 colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0612: 		</tr>
0613: 		<tr>
0614: 			<td rowspan="3">
0615:         <select name="game7" size="2" style="width:150;" onChange="rSelect('game7')">
0616:           <option value="07"></option>
0617:           <option value="10"></option>
0618:         </select>
0619: 			</td>
0620: 			<td colspan="5">&nbsp;</td>
0621: 			<td>&nbsp;</td>
0622: 			<td colspan="4">&nbsp;</td>
0623: 		</tr>
0624: 		<tr>
0625: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0626: 			<td bgcolor="<%= linecolor %>" rowspan="5"><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="6"><img src="images/clear.gif" height="1" width="1"></td>
0629: 		</tr>
0630: 		<tr>
0631: 			<td>&nbsp;</td>
0632: 			<td>&nbsp;</td>
0633: 			<td rowspan="3">
0634:         <select name="game12" size="2" style="width:150;" onChange="rSelect('game12')">
0635:           <option value=""></option>
0636:           <option value=""></option>
0637:         </select>
0638: 			</td>
0639: 			<td>&nbsp;</td>
0640: 			<td colspan="6">&nbsp;</td>
0641: 		</tr>
0642: 		<tr>
0643: 			<td height="1" colspan="2"><img src="images/clear.gif" height="1" width="1"></td>
0644: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0645: 			<td bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0646: 			<td colspan="6"><img src="images/clear.gif" height="1" width="1"></td>
0647: 		</tr>
0648: 		<tr>
0649: 			<td rowspan="3">
0650:         <select name="game8" size="2" style="width:150;" onChange="rSelect('game8')">
0651:           <option value="02"></option>
0652:           <option value="15"></option>
0653:         </select>
0654: 			</td>
0655: 			<td>&nbsp;</td>
0656: 			<td>&nbsp;</td>
0657: 			<td colspan="8">&nbsp;</td>
0658: 		</tr>
0659: 		<tr>
0660: 			<td height="1" bgcolor="<%= linecolor %>"><img src="images/clear.gif" height="1" width="1"></td>
0661: 			<td colspan="10"><img src="images/clear.gif" height="1" width="1"></td>
0662: 		</tr>
0663: 		<tr><td colspan="12">
0664:             <p align="center">&nbsp;&nbsp;<font face="Arial Narrow"><font color="#FF0000"><b>
0665:             Do not use the browser's &quot;Back&quot; button.</b></font>&nbsp;&nbsp;&nbsp;
0666:             <b><i>Use buttons above to navigate</i></b></font></p>
0667:           </td></tr>
0668: 		<tr><td colspan="13">&nbsp;</td></tr>
0669: 		<tr><td colspan="13">&nbsp;</td></tr>
0670: 		<tr><td colspan="13" class="norm"><big>- If you are having problems seeing your picks in the <b>Second Round</b>, <a href="Win7_IE10.htm" target="_blank"><b>click here</a>.</td></tr>
0671: 		<tr><td colspan="13">&nbsp;</td></tr>
0672: 	</table>
0673: </form>
0674: 
0675: </body>
0676: </html>