Count Lines in Pages

Contents of Page: displayPicks4.asp Number of Lines: 413 Last Modified: 8/22/2018 1:32:41 PM
0001: <% @Language = "VBScript" %>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/constants.inc" -->
0005: <!-- #include FILE="include/funcs.asp" -->
0006: 
0007: <%
0008: 	yyear = Request.QueryString("year")
0009: If yyear <> "" Then
0010: season = yyear
0011: End If
0012: 	picksid = Request.QueryString("pick")
0013: '	If user = "" Or (user <> "" And Session("loggedIn") = "") Or picksid = "" Then Response.Redirect("wclogin.asp?from=picks.asp")
0014: 
0015: 	' get all teams selected in this pick
0016: 	Set rsPicks = Server.CreateObject("ADODB.Recordset")
0017: 	sqlString = "SELECT * FROM mmPicks " & _
0018: 							"WHERE ID = " & picksid 
0019: '							"AND Season = " & season
0020: 	rsPicks.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0021: 	If rsPicks.EOF Then
0022: 		rsPicks.Close
0023: 		Set rsPicks = Nothing
0024: 		Response.Redirect("standings.asp")
0025: 	End If
0026: 	
0027: 	Email = rsPicks("EmailAddress").Value
0028: 	CurrPts = rsPicks("FPts").Value
0029: 	PossPts = rsPicks("Poss_Pts").Value
0030: 	
0031: 	Set rsEntry = Server.CreateObject("ADODB.Recordset")
0032:     	sqlString = "SELECT * FROM mmEntries " & _
0033: 							"WHERE EmailAddress = '" & Email & "' " & _
0034: 							"AND Season = " & season
0035: 	rsEntry.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0036: 	If Not rsEntry.EOF Then
0037: '	Response.Write("<BR>" & rsEntry("City").Value)
0038: 		CitySt = rsEntry("City").Value & ", " & rsEntry("State").Value
0039: 		Name = rsEntry("Name").Value
0040:     	FirstName = rsEntry("FirstName").Value
0041:  '   	Country = rsEntry("Country").Value
0042: 	End If
0043:    	rsEntry.Close
0044: 	Set rsEntry = Nothing
0045: 
0046: 		Set rsStand = Server.CreateObject("ADODB.Recordset")
0047: 	sqlString = "SELECT * FROM mmStandings " & _
0048: 							"WHERE PicksID = '" & picksid & "' "
0049: '							"AND Season = " & season
0050: 	rsStand.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0051: 	If rsStand.EOF Then
0052: 		rsStand.Close
0053: 		Set rsStand = Nothing
0054: 		ShowIt = "N"
0055:     Else
0056:         ShowIt = "Y"
0057: 	End If
0058: 
0059: 
0060: 	back = "#fffaf0"
0061: 
0062: 	MA1 = MatchUpCount("A1", rsPicks("A1").Value, "A2", rsPicks("A2").Value, season)
0063: 	MA2 = MatchUpCount("A3", rsPicks("A3").Value, "A4", rsPicks("A4").Value, season)
0064: 	MA3 = MatchUpCount("A5", rsPicks("A5").Value, "A6", rsPicks("A6").Value, season)
0065: 	MA4 = MatchUpCount("A7", rsPicks("A7").Value, "A8", rsPicks("A8").Value, season)
0066: 	MA5 = MatchUpCount("A9", rsPicks("A9").Value, "A10", rsPicks("A10").Value, season)
0067: 	MA6 = MatchUpCount("A11", rsPicks("A11").Value, "A12", rsPicks("A12").Value, season)
0068: 	MA7 = MatchUpCount("A13", rsPicks("A13").Value, "A14", rsPicks("A14").Value, season)
0069: 	MB1 = MatchUpCount("B1", rsPicks("B1").Value, "B2", rsPicks("B2").Value, season)
0070: 	MB2 = MatchUpCount("B3", rsPicks("B3").Value, "B4", rsPicks("B4").Value, season)
0071: 	MB3 = MatchUpCount("B5", rsPicks("B5").Value, "B6", rsPicks("B6").Value, season)
0072: 	MB4 = MatchUpCount("B7", rsPicks("B7").Value, "B8", rsPicks("B8").Value, season)
0073: 	MB5 = MatchUpCount("B9", rsPicks("B9").Value, "B10", rsPicks("B10").Value, season)
0074: 	MB6 = MatchUpCount("B11", rsPicks("B11").Value, "B12", rsPicks("B12").Value, season)
0075: 	MB7 = MatchUpCount("B13", rsPicks("B13").Value, "B14", rsPicks("B14").Value, season)
0076: 	MC1 = MatchUpCount("C1", rsPicks("C1").Value, "C2", rsPicks("C2").Value, season)
0077: 	MC2 = MatchUpCount("C3", rsPicks("C3").Value, "C4", rsPicks("C4").Value, season)
0078: 	MC3 = MatchUpCount("C5", rsPicks("C5").Value, "C6", rsPicks("C6").Value, season)
0079: 	MC4 = MatchUpCount("C7", rsPicks("C7").Value, "C8", rsPicks("C8").Value, season)
0080: 	MC5 = MatchUpCount("C9", rsPicks("C9").Value, "C10", rsPicks("C10").Value, season)
0081: 	MC6 = MatchUpCount("C11", rsPicks("C11").Value, "C12", rsPicks("C12").Value, season)
0082: 	MC7 = MatchUpCount("C13", rsPicks("C13").Value, "C14", rsPicks("C14").Value, season)
0083: 	MD1 = MatchUpCount("D1", rsPicks("D1").Value, "D2", rsPicks("D2").Value, season)
0084: 	MD2 = MatchUpCount("D3", rsPicks("D3").Value, "D4", rsPicks("D4").Value, season)
0085: 	MD3 = MatchUpCount("D5", rsPicks("D5").Value, "D6", rsPicks("D6").Value, season)
0086: 	MD4 = MatchUpCount("D7", rsPicks("D7").Value, "D8", rsPicks("D8").Value, season)
0087: 	MD5 = MatchUpCount("D9", rsPicks("D9").Value, "D10", rsPicks("D10").Value, season)
0088: 	MD6 = MatchUpCount("D11", rsPicks("D11").Value, "D12", rsPicks("D12").Value, season)
0089: 	MD7 = MatchUpCount("D13", rsPicks("D13").Value, "D14", rsPicks("D14").Value, season)
0090: 
0091: 	MS1 = MatchUpCount("A15", rsPicks("A15").Value, "B15", rsPicks("B15").Value, season)
0092: 	MS2 = MatchUpCount("C15", rsPicks("C15").Value, "D15", rsPicks("D15").Value, season)
0093: 	MF1 = MatchUpCount("S1", rsPicks("S1").Value, "S2", rsPicks("S2").Value, season)
0094: 	MF0 = MatchUpCount("F1", rsPicks("F1").Value, "F1", rsPicks("F1").Value, season)
0095: 
0096: 
0097: %>
0098: 
0099: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0100: 
0101: <html>
0102: <head>
0103: 	<title>March Madness - Display Picks</title>
0104: 	<link href="../ncaa/mm.css" rel="stylesheet" type="text/css">
0105: </head>
0106: 
0107: <body bgcolor="#ffffff">
0108: 
0109: 
0110: <table border="0" width="870" id="table1">
0111: 	<tr>
0112: 		<td  colspan="4"><span class="normbold">Entry Name:</span>&nbsp;&nbsp;
0113: 				<span class="norm"><%= rsPicks("EntryName").Value %>&nbsp;&nbsp;&nbsp;<span class="normbold">Actual Name:&nbsp;&nbsp;</span><%= FirstName %>&nbsp;<%= Name %>&nbsp;&nbsp;&nbsp;<span class="normbold"><br>City, St:&nbsp;&nbsp;</span><%= CitySt %>
0114: 			</td>
0115: 		<td colspan="2">&nbsp;<span class="normbold">Curr 
0116: 		Points:</span>&nbsp;<span class="norm"><%= CurrPts %></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
0117: 		<span class="normbold">Poss Points:</span>&nbsp;<span class="norm"><%= PossPts %></span></td></td>
0118: 	</tr>
0119: 	<tr>
0120: 		<td class="norm" bgcolor="#FFFFFF" align="center" width="96%" colspan="6">&nbsp;</td>
0121: 	</tr>
0122: 
0123: <% If ShowIt = "Y" Then %>
0124: 	<tr>
0125: 		<td class="norm" bgcolor="#FFFFFF" align="center" width="16%"><b>
0126: 		<font size="2" color="#FF0000">[ </font>
0127: 		<font size="2"><%= rsStand("Round1").Value %></font><font size="2" color="#FF0000"> ]</font></b></td>
0128: 		<td class="norm" align="center" width="16%"><b><font size="2" color="#FF0000">[ </font>
0129: 		<font size="2"><%= rsStand("Sweet16").Value %></font><font size="2" color="#FF0000"> ]</font></b></td>
0130: 		<td class="norm" align="center" width="16%"><b><font size="2" color="#FF0000">[ </font>
0131: 		<font size="2"><%= rsStand("Final8").Value %></font><font size="2" color="#FF0000"> ]</font></b></td>
0132: 		<td class="norm" align="center" width="16%"><b><font size="2" color="#FF0000">[ </font>
0133: 		<font size="2"><%= rsStand("Final4").Value %></font><font size="2" color="#FF0000"> ]</font></b></td>
0134: 		<td class="norm" width="16%" align="center"><b><font size="2" color="#FF0000">[ </font>
0135: 		<font size="2"><%= rsStand("Final2").Value %></font><font size="2" color="#FF0000"> ]</font></b></td>
0136: 		<td class="norm" width="16%" align="center"><b><font size="2" color="#FF0000">[ </font>
0137: 		<font size="2"><%= rsStand("Final1").Value %></font><font size="2" color="#FF0000"> ]</font></b></td>
0138: 	</tr>
0139: <% End If %>
0140: 	<tr>
0141: 		<td class="norm" bgcolor="#FFFFFF" align="center" width="16%"><b><i>
0142: 		<font size="2" color="#808080">(1 Point)</font></i></b></td>
0143: 		<td class="norm" size="2"  align="center" width="16%"><b><i><font size="2" color="#808080">(2 Points)</font></i></b></td>
0144: 		<td class="norm" size="2" align="center" width="16%"><b><i><font size="2" color="#808080">(4 Points)</font></i></b></td>
0145: 		<td class="norm" size="2" align="center" width="16%">
0146: 		<b><i>
0147: 		<font size="2" color="#808080">(8 Points)</font></i></b></td>
0148: 		<td class="norm" width="16%" align="center">
0149: 		<b><i>
0150: 		<font size="2" color="#808080">(16 Points)</font></i></b></td>
0151: 		<td class="norm" width="16%" align="center">
0152: 		<b><i>
0153: 		<font size="2" color="#808080">(32 Points)</font></i></b></td>
0154: 	</tr>
0155: 	<tr>
0156: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A1").Value,"F32Pts",Season) %></font></td>
0157: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A9").Value,"F16Pts",Season) %></font></td>
0158: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0159: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0160: 		<td class="norm" rowspan="2" height="20" width="119">
0161: 		<p align="center">
0162: 					<input type="button" value="Print" class="norm" onClick="window.print()"></td>
0163: 		<td class="norm" width="112" rowspan="2" height="20">
0164: 		<p align="center">
0165: 					<input type="button" value="Return" class="norm" onClick="history.back()" style="float: right"></td>
0166: 	</tr>
0167: 	<tr>
0168: 		<td class="norm" bgcolor="#C0C0C0" width="95" width="70%"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A2").Value,"F32Pts",Season) %></font>
0169: 		&nbsp;<small><i>(<%= MA1 %>)</td>
0170:        
0171: 	</tr>
0172: 	<tr>
0173: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A3").Value,"F32Pts",Season) %></font></td>
0174: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A10").Value,"F16Pts",Season) %></font>
0175: 		&nbsp;<small><i>(<%= MA5 %>)</td>
0176: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0177: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("A13").Value,"F8Pts",Season) %></font></td>
0178: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0179: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0180: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0181: 	</tr>
0182: 	<tr>
0183: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A4").Value,"F32Pts",Season) %></font>
0184: 		&nbsp;<small><i>(<%= MA2 %>)</td>
0185: 	</tr>
0186: 	<tr>
0187: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A5").Value,"F32Pts",Season) %></font></td>
0188: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A11").Value, "F16Pts",Season) %></font></td>
0189: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0190: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0191: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("A15").Value,"F4Pts",Season) %></font></td>
0192: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0193: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0194: 	</tr>
0195: 	<tr>
0196: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A6").Value,"F32Pts",Season) %></font>
0197: 		&nbsp;<small><i>(<%= MA3 %>)</td>
0198: 	</tr>
0199: 	<tr>
0200: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A7").Value,"F32Pts",Season) %></font></td>
0201: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A12").Value,"F16Pts",Season) %></font>
0202: 		&nbsp;<small><i>(<%= MA6 %>)</td>
0203: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0204: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("A14").Value,"F8Pts",Season) %></font>
0205: 		&nbsp;<small><i>(<%= MA7 %>)</td>
0206: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0207: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0208: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0209: 	</tr>
0210: 	<tr>
0211: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("A8").Value,"F32Pts",Season) %></font>
0212: 		&nbsp;<small><i>(<%= MA4 %>)</td>
0213: 	</tr>
0214: 	<tr>
0215: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B1").Value,"F32Pts",Season) %></font></td>
0216: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B9").Value,"F16Pts",Season) %></font></td>
0217: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0218: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0219: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="119">
0220: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("S1").Value,"F2Pts",Season) %></font></td>
0221: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0222: 	</tr>
0223: 	<tr>
0224: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B2").Value,"F32Pts",Season) %></font>
0225: 		&nbsp;<small><i>(<%= MB1 %>)</td>
0226: 	</tr>
0227: 	<tr>
0228: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B3").Value,"F32Pts",Season) %></font></td>
0229: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B10").Value,"F16Pts",Season) %></font>
0230: 		&nbsp;<small><i>(<%= MB5 %>)</td>
0231: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0232: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("B13").Value,"F8Pts",Season) %></font></td>
0233: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0234: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0235: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0236: 	</tr>
0237: 	<tr>
0238: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B4").Value,"F32Pts",Season) %></font>
0239: 		&nbsp;<small><i>(<%= MB2 %>)</td>
0240: 	</tr>
0241: 	<tr>
0242: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B5").Value,"F32Pts",Season) %></font></td>
0243: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B11").Value, "F16Pts",Season) %></font></td>
0244: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0245: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0246: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("B15").Value,"F4Pts",Season) %></font>
0247: 		&nbsp;<small><i>(<%= MS1 %>)</td>
0248: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0249: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0250: 	</tr>
0251: 	<tr>
0252: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B6").Value,"F32Pts",Season) %></font>
0253: 		&nbsp;<small><i>(<%= MB3 %>)</td>
0254: 	</tr>
0255: 	<tr>
0256: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B7").Value,"F32Pts",Season) %></font></td>
0257: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B12").Value,"F16Pts",Season) %></font>
0258: 		&nbsp;<small><i>(<%= MB6 %>)</td>
0259: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0260: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("B14").Value,"F8Pts",Season) %></font>
0261: 		&nbsp;<small><i>(<%= MB7 %>)</td>
0262: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0263: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0264: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0265: 	</tr>
0266: 	<tr>
0267: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("B8").Value,"F32Pts",Season) %></font>
0268: 		&nbsp;<small><i>(<%= MB4 %>)</td>
0269: 	</tr>
0270: 	<tr>
0271: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C1").Value,"F32Pts",Season) %></font></td>
0272: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C9").Value,"F16Pts",Season) %></font></td>
0273: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0274: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0275: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0276: 		<td class="norm" bgcolor="#C0C0C0" width="112" rowspan="2" height="20">
0277: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("F1").Value,"F1Pts",Season) %></font>
0278: 		&nbsp;<small><i>(<%= MF0 %>)</td>
0279: 	</tr>
0280: 	<tr>
0281: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C2").Value,"F32Pts",Season) %></font>
0282: 		&nbsp;<small><i>(<%= MC1 %>)</td>
0283: 	</tr>
0284: 	<tr>
0285: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C3").Value,"F32Pts",Season) %></font></td>
0286: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C10").Value,"F16Pts",Season) %></font>
0287: 		&nbsp;<small><i>(<%= MC5 %>)</td>
0288: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0289: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("C13").Value,"F8Pts",Season) %></font></td>
0290: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0291: 		<td class="norm" rowspan="2" height="20" width="119">
0292: 		<p align="right">&nbsp;</td>
0293: 		<td class="norm" width="112" rowspan="2" height="20">
0294: 		<p align="center">&nbsp;</td>
0295: 	</tr>
0296: 	<tr>
0297: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C4").Value,"F32Pts",Season) %></font>
0298: 		&nbsp;<small><i>(<%= MC2 %>)</td>
0299: 	</tr>
0300: 	<tr>
0301: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C5").Value,"F32Pts",Season) %></font></td>
0302: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C11").Value, "F16Pts",Season) %></font></td>
0303: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0304: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0305: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("C15").Value,"F4Pts",Season) %></font></td>
0306: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0307: 		<td class="norm" width="112" rowspan="2" height="20"><font size="2">&nbsp; </font> </td> 
0308: 	</tr>
0309: 	<tr>
0310: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C6").Value,"F32Pts",Season) %></font>
0311: 		&nbsp;<small><i>(<%= MC3 %>)</td>
0312: 	</tr>
0313: 	<tr>
0314: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C7").Value,"F32Pts",Season) %></font></td>
0315: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C12").Value,"F16Pts",Season) %></font>
0316: 		&nbsp;<small><i>(<%= MC6 %>)</td>
0317: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0318: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("C14").Value,"F8Pts",Season) %></font>
0319: 		&nbsp;<small><i>(<%= MC7 %>)</td>
0320: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0321: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0322: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0323: 	</tr>
0324: 	<tr>
0325: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("C8").Value,"F32Pts",Season) %></font>
0326: 		&nbsp;<small><i>(<%= MC4 %>)</td>
0327: 	</tr>
0328: 	<tr>
0329: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D1").Value,"F32Pts",Season) %></font></td>
0330: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D9").Value,"F16Pts",Season) %></font></td>
0331: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0332: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0333: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="119">
0334: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("S2").Value,"F2Pts",Season) %></font>
0335: 		&nbsp;<small><i>(<%= MF1 %>)</td>
0336: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0337: 	</tr>
0338: 	<tr>
0339: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D2").Value,"F32Pts",Season) %></font>
0340: 		&nbsp;<small><i>(<%= MD1 %>)		</td>
0341: 	</tr>
0342: 	<tr>
0343: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D3").Value,"F32Pts",Season) %></font></td>
0344: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D10").Value,"F16Pts",Season) %></font>
0345: 		&nbsp;<small><i>(<%= MD5 %>)</td>
0346: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0347: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("D13").Value,"F8Pts",Season) %></font></td>
0348: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0349: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0350: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0351: 	</tr>
0352: 	<tr>
0353: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D4").Value,"F32Pts",Season) %></font>
0354: 		&nbsp;<small><i>(<%= MD2 %>)</td>
0355: 	</tr>
0356: 	<tr>
0357: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D5").Value,"F32Pts",Season) %></font></td>
0358: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D11").Value, "F16Pts",Season) %></font></td>
0359: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0360: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0361: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("D15").Value,"F4Pts",Season) %></font>
0362: 		&nbsp;<small><i>(<%= MS2 %>)</td>
0363: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0364: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0365: 	</tr>
0366: 	<tr>
0367: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D6").Value,"F32Pts",Season) %></font>
0368: 		&nbsp;<small><i>(<%= MD3 %>)</td>
0369: 	</tr>
0370: 	<tr>
0371: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D7").Value,"F32Pts",Season) %></font></td>
0372: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D12").Value,"F16Pts",Season) %></font>
0373: 		&nbsp;<small><i>(<%= MD6 %>)</td>
0374: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0375: 		<font size="2">&nbsp;<%= displayTeamFont(rsPicks("D14").Value,"F8Pts",Season) %></font>
0376: 		&nbsp;<small><i>(<%= MD7 %>)</td>
0377: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0378: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0379: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0380: 	</tr>
0381: 	<tr>
0382: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(rsPicks("D8").Value,"F32Pts",Season) %></font>
0383: 		&nbsp;<small><i>(<%= MD4 %>)</td>
0384: 	</tr>
0385: <% If ShowIt = "Y" Then %>
0386: 	<tr>
0387: 		<td class="norm" colspan="10">
0388: 		<p align="center"><font color="#808080"><i><b>
0389: 		<font size="2">Number in</font></b></i></font><font size="2"><b> <font color="#FF0000">[ ]</font></b></font><font color="#808080"><i><b><font size="2"> 
0390: 		represents the number of points earned in that round.</font></b></i></font>
0391: 		&nbsp;&nbsp;|&nbsp;&nbsp;<font color="#808080"><i><b><font size="2">Number in</b></i></font><b> <font color="black">( )</font></b></font><font color="#808080"><i><b> 
0392: 		represents the number of entries with that match up.</font></b></i></font></td>
0393: 	</tr>
0394: <% End If %>
0395: 	<tr>
0396: 		<td class="norm" width="53">&nbsp;</td>
0397: 		<td colspan="5">&nbsp;</td>
0398: 	</tr>
0399: 	<tr>
0400: 		<td class="norm" width="53">&nbsp;</td>
0401: 		<td class="norm" colspan="5"><i><font color="#FF0000"><strike><b>CrossedRed</b></strike></font> 
0402: 		= Incorrect Pick, <b><font color="#008000">Green </font></b>= Correct Pick, <b>
0403: 		<font color="#0000FF">Blue</font></b> = Still in the running.</i></td>
0404: 	</tr>
0405: </table>
0406: 
0407: </body>
0408: </html>
0409: 
0410: <%
0411: 	rsPicks.Close
0412: 	Set rsPicks = Nothing
0413: %>