Count Lines in Pages

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