Count Lines in Pages

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