Count Lines in Pages

Contents of Page: DisplayCorrectBracket.asp Number of Lines: 644 Last Modified: 3/23/2022 6:21:35 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: 
0009: 	user = Request.Cookies("user")
0010: 
0011: 	yyear = Request.QueryString("year")
0012: If yyear <> "" Then
0013: season = yyear
0014: End If
0015: 
0016: LastYr = season - 1
0017: NextYr = season + 1
0018: 
0019: Dim RegionA(15)
0020: Dim RegionB(15)
0021: Dim RegionC(15)
0022: Dim RegionD(15)
0023: Semi1 = ""
0024: Semi2 = ""
0025: Final1 = ""
0026: 
0027: 
0028: 	Set rs = Server.CreateObject("ADODB.Recordset")
0029: 
0030: 	sqlString = "SELECT * FROM mmResults " & _
0031: 	            "WHERE Season = " & season & " " & _
0032: 	            "AND Region = 'A' AND F32Pts <> 99 ORDER BY Display_Order"
0033: 
0034: 	rs.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0035: 	
0036: 	Do Until rs.EOF
0037: 
0038:     ID = rs("ID").Value
0039:     Display_Order = rs("Display_Order").Value
0040: 	F32Pts = rs("F32Pts").Value
0041: 	F16Pts = rs("F16Pts").Value
0042: 	F8Pts =  rs("F8Pts").Value
0043: 	F4Pts =  rs("F4Pts").Value
0044: 	F2Pts =  rs("F2Pts").Value
0045: 	F1Pts =  rs("F1Pts").Value
0046: 
0047: 
0048:     If F32Pts <> 0 Then
0049: 		If Display_Order = 1 Or Display_Order = 2 Then
0050: 		Regiona(1) = ID
0051: 		ElseIf Display_Order = 3 Or Display_Order = 4 Then
0052: 		Regiona(2) = ID	
0053: 		ElseIf Display_Order = 5 Or Display_Order = 6 Then
0054: 		Regiona(3) = ID	
0055: 		ElseIf Display_Order = 7 Or Display_Order = 8 Then
0056: 		Regiona(4) = ID	
0057: 		ElseIf Display_Order = 9 Or Display_Order = 10 Then
0058: 		Regiona(5) = ID	
0059: 		ElseIf Display_Order = 11 Or Display_Order = 12 Then
0060: 		Regiona(6) = ID	
0061: 		ElseIf Display_Order = 13 Or Display_Order = 14 Then
0062: 		Regiona(7) = ID 
0063: 		Else
0064: 		Regiona(8) = ID
0065: 		End If
0066:     End If
0067:   If F16Pts = 2 Then
0068: 		If Display_Order >= 1 and Display_Order < 5 Then
0069: 		Regiona(9) = ID
0070: 		ElseIf Display_Order >= 5 and Display_Order < 9 Then
0071: 		Regiona(10) = ID
0072: 		ElseIf Display_Order >= 8 and Display_Order < 13 Then
0073: 		Regiona(11) = ID
0074: 		Else
0075: 		Regiona(12) = ID
0076: 		End If
0077:     End If
0078:   If F8Pts = 4 Then
0079: 		If Display_Order >= 1 and Display_Order < 9 Then
0080: 		Regiona(13) = ID
0081: 		Else
0082: 		Regiona(14) = ID
0083: 		End If
0084:     End If
0085:   If F4Pts = 8 Then
0086: 		Regiona(15) = ID
0087:     End If
0088:   If F2PTS = 16 Then
0089:     Semi1 = ID
0090:   End If
0091:   If F1Pts = 32 Then
0092:   Final1 = ID
0093:   End If
0094: 	
0095: 
0096: 	rs.MoveNext
0097: 	Loop
0098: 
0099: 
0100: 	Set rs = Server.CreateObject("ADODB.Recordset")
0101: 
0102: 	sqlString = "SELECT * FROM mmResults " & _
0103: 	            "WHERE Season = " & season & " " & _
0104: 	            "AND Region = 'B' AND F32Pts <> 99 ORDER BY Display_Order"
0105: 
0106: 	rs.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0107: 	
0108: 	Do Until rs.EOF
0109: 
0110:     ID = rs("ID").Value
0111:     Display_Order = rs("Display_Order").Value
0112: 	F32Pts = rs("F32Pts").Value
0113: 	F16Pts = rs("F16Pts").Value
0114: 	F8Pts =  rs("F8Pts").Value
0115: 	F4Pts =  rs("F4Pts").Value
0116: 	F2Pts =  rs("F2Pts").Value
0117: 	F1Pts =  rs("F1Pts").Value
0118: 
0119: 
0120:     If F32Pts <> 0 Then
0121: 		If Display_Order = 1 Or Display_Order = 2 Then
0122: 		Regionb(1) = ID
0123: 		ElseIf Display_Order = 3 Or Display_Order = 4 Then
0124: 		Regionb(2) = ID	
0125: 		ElseIf Display_Order = 5 Or Display_Order = 6 Then
0126: 		Regionb(3) = ID	
0127: 		ElseIf Display_Order = 7 Or Display_Order = 8 Then
0128: 		Regionb(4) = ID	
0129: 		ElseIf Display_Order = 9 Or Display_Order = 10 Then
0130: 		Regionb(5) = ID	
0131: 		ElseIf Display_Order = 11 Or Display_Order = 12 Then
0132: 		Regionb(6) = ID	
0133: 		ElseIf Display_Order = 13 Or Display_Order = 14 Then
0134: 		Regionb(7) = ID 
0135: 		Else
0136: 		Regionb(8) = ID
0137: 		End If
0138:     End If
0139:   If F16Pts = 2 Then
0140: 		If Display_Order >= 1 and Display_Order < 5 Then
0141: 		Regionb(9) = ID
0142: 		ElseIf Display_Order >= 5 and Display_Order < 9 Then
0143: 		Regionb(10) = ID
0144: 		ElseIf Display_Order >= 8 and Display_Order < 13 Then
0145: 		Regionb(11) = ID
0146: 		Else
0147: 		Regionb(12) = ID
0148: 		End If
0149:     End If
0150:   If F8Pts = 4 Then
0151: 		If Display_Order >= 1 and Display_Order < 9 Then
0152: 		Regionb(13) = ID
0153: 		Else
0154: 		Regionb(14) = ID
0155: 		End If
0156:     End If
0157:   If F4Pts = 8 Then
0158: 		Regionb(15) = ID
0159:     End If
0160:   If F2PTS = 16 Then
0161:     Semi1 = ID
0162:   End If
0163:   If F1Pts = 32 Then
0164:   Final1 = ID
0165:   End If
0166: 	
0167: 
0168: 	rs.MoveNext
0169: 	Loop
0170: 
0171: 
0172: 	Set rs = Server.CreateObject("ADODB.Recordset")
0173: 
0174: 	sqlString = "SELECT * FROM mmResults " & _
0175: 	            "WHERE Season = " & season & " " & _
0176: 	            "AND Region = 'C' AND F32Pts <> 99 ORDER BY Display_Order"
0177: 
0178: 	rs.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0179: 	
0180: 	Do Until rs.EOF
0181: 
0182:     ID = rs("ID").Value
0183:     Display_Order = rs("Display_Order").Value
0184: 	F32Pts = rs("F32Pts").Value
0185: 	F16Pts = rs("F16Pts").Value
0186: 	F8Pts =  rs("F8Pts").Value
0187: 	F4Pts =  rs("F4Pts").Value
0188: 	F2Pts =  rs("F2Pts").Value
0189: 	F1Pts =  rs("F1Pts").Value
0190: 
0191: 
0192:     If F32Pts <> 0 Then
0193: 		If Display_Order = 1 Or Display_Order = 2 Then
0194: 		Regionc(1) = ID
0195: 		ElseIf Display_Order = 3 Or Display_Order = 4 Then
0196: 		Regionc(2) = ID	
0197: 		ElseIf Display_Order = 5 Or Display_Order = 6 Then
0198: 		Regionc(3) = ID	
0199: 		ElseIf Display_Order = 7 Or Display_Order = 8 Then
0200: 		Regionc(4) = ID	
0201: 		ElseIf Display_Order = 9 Or Display_Order = 10 Then
0202: 		Regionc(5) = ID	
0203: 		ElseIf Display_Order = 11 Or Display_Order = 12 Then
0204: 		Regionc(6) = ID	
0205: 		ElseIf Display_Order = 13 Or Display_Order = 14 Then
0206: 		Regionc(7) = ID 
0207: 		Else
0208: 		Regionc(8) = ID
0209: 		End If
0210:     End If
0211:   If F16Pts = 2 Then
0212: 		If Display_Order >= 1 and Display_Order < 5 Then
0213: 		Regionc(9) = ID
0214: 		ElseIf Display_Order >= 5 and Display_Order < 9 Then
0215: 		Regionc(10) = ID
0216: 		ElseIf Display_Order >= 8 and Display_Order < 13 Then
0217: 		Regionc(11) = ID
0218: 		Else
0219: 		Regionc(12) = ID
0220: 		End If
0221:     End If
0222:   If F8Pts = 4 Then
0223: 		If Display_Order >= 1 and Display_Order < 9 Then
0224: 		Regionc(13) = ID
0225: 		Else
0226: 		Regionc(14) = ID
0227: 		End If
0228:     End If
0229:   If F4Pts = 8 Then
0230: 		Regionc(15) = ID
0231:     End If
0232:   If F2PTS = 16 Then
0233:     Semi2 = ID
0234:   End If
0235:   If F1Pts = 32 Then
0236:   Final1 = ID
0237:   End If	
0238: 
0239: 	rs.MoveNext
0240: 	Loop
0241: 
0242: 	Set rs = Server.CreateObject("ADODB.Recordset")
0243: 
0244: 	sqlString = "SELECT * FROM mmResults " & _
0245: 	            "WHERE Season = " & season & " " & _
0246: 	            "AND Region = 'D' AND F32Pts <> 99 ORDER BY Display_Order"
0247: 
0248: 	rs.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0249: 	
0250: 	Do Until rs.EOF
0251: 
0252:     ID = rs("ID").Value
0253:     Display_Order = rs("Display_Order").Value
0254: 	F32Pts = rs("F32Pts").Value
0255: 	F16Pts = rs("F16Pts").Value
0256: 	F8Pts =  rs("F8Pts").Value
0257: 	F4Pts =  rs("F4Pts").Value
0258: 	F2Pts =  rs("F2Pts").Value
0259: 	F1Pts =  rs("F1Pts").Value
0260: 
0261: 
0262:     If F32Pts <> 0 Then
0263: 		If Display_Order = 1 Or Display_Order = 2 Then
0264: 		Regiond(1) = ID
0265: 		ElseIf Display_Order = 3 Or Display_Order = 4 Then
0266: 		Regiond(2) = ID	
0267: 		ElseIf Display_Order = 5 Or Display_Order = 6 Then
0268: 		Regiond(3) = ID	
0269: 		ElseIf Display_Order = 7 Or Display_Order = 8 Then
0270: 		Regiond(4) = ID	
0271: 		ElseIf Display_Order = 9 Or Display_Order = 10 Then
0272: 		Regiond(5) = ID	
0273: 		ElseIf Display_Order = 11 Or Display_Order = 12 Then
0274: 		Regiond(6) = ID	
0275: 		ElseIf Display_Order = 13 Or Display_Order = 14 Then
0276: 		Regiond(7) = ID 
0277: 		Else
0278: 		Regiond(8) = ID
0279: 		End If
0280:     End If
0281:   If F16Pts = 2 Then
0282: 		If Display_Order >= 1 and Display_Order < 5 Then
0283: 		Regiond(9) = ID
0284: 		ElseIf Display_Order >= 5 and Display_Order < 9 Then
0285: 		Regiond(10) = ID
0286: 		ElseIf Display_Order >= 8 and Display_Order < 13 Then
0287: 		Regiond(11) = ID
0288: 		Else
0289: 		Regiond(12) = ID
0290: 		End If
0291:     End If
0292:   If F8Pts = 4 Then
0293: 		If Display_Order >= 1 and Display_Order < 9 Then
0294: 		Regiond(13) = ID
0295: 		Else
0296: 		Regiond(14) = ID
0297: 		End If
0298:     End If
0299:   If F4Pts = 8 Then
0300: 		Regiond(15) = ID
0301:     End If
0302:   If F2PTS = 16 Then
0303:     Semi2 = ID
0304:   End If
0305:   If F1Pts = 32 Then
0306:   Final1 = ID
0307:   End If	
0308: 
0309: 	rs.MoveNext
0310: 	Loop
0311: 
0312: 	back = "#fffaf0"
0313: 
0314: 	MA1 = MatchUpCount("A1", RegionA(1), "A2", RegionA(2), season)
0315: 	MA2 = MatchUpCount("A3", RegionA(3), "A4", RegionA(4), season)
0316: 	MA3 = MatchUpCount("A5", RegionA(5), "A6", RegionA(6), season)
0317: 	MA4 = MatchUpCount("A7", RegionA(7), "A8", RegionA(8), season)
0318: 	MA5 = MatchUpCount("A9", RegionA(9), "A10", RegionA(10), season)
0319: 	MA6 = MatchUpCount("A11", RegionA(11), "A12", RegionA(12), season)
0320: 	MA7 = MatchUpCount("A13", RegionA(13), "A14", RegionA(14), season)
0321: 	MB1 = MatchUpCount("B1", RegionB(1), "B2", RegionB(2), season)
0322: 	MB2 = MatchUpCount("B3", RegionB(3), "B4", RegionB(4), season)
0323: 	MB3 = MatchUpCount("B5", RegionB(5), "B6", RegionB(6), season)
0324: 	MB4 = MatchUpCount("B7", RegionB(7), "B8", RegionB(8), season)
0325: 	MB5 = MatchUpCount("B9", RegionB(9), "B10", RegionB(10), season)
0326: 	MB6 = MatchUpCount("B11", RegionB(11), "B12", RegionB(12), season)
0327: 	MB7 = MatchUpCount("B13", RegionB(13), "B14", RegionB(14), season)
0328: 	MC1 = MatchUpCount("C1", RegionC(1), "C2", RegionC(2), season)
0329: 	MC2 = MatchUpCount("C3", RegionC(3), "C4", RegionC(4), season)
0330: 	MC3 = MatchUpCount("C5", RegionC(5), "C6", RegionC(6), season)
0331: 	MC4 = MatchUpCount("C7", RegionC(7), "C8", RegionC(8), season)
0332: 	MC5 = MatchUpCount("C9", RegionC(9), "C10", RegionC(10), season)
0333: 	MC6 = MatchUpCount("C11", RegionC(11), "C12", RegionC(12), season)
0334: 	MC7 = MatchUpCount("C13", RegionC(13), "C14", RegionC(14), season)
0335: 	MD1 = MatchUpCount("D1", Regiond(1), "D2", Regiond(2), season)
0336: 	MD2 = MatchUpCount("D3", Regiond(3), "D4", Regiond(4), season)
0337: 	MD3 = MatchUpCount("D5", Regiond(5), "D6", Regiond(6), season)
0338: 	MD4 = MatchUpCount("D7", Regiond(7), "D8", Regiond(8), season)
0339: 	MD5 = MatchUpCount("D9", Regiond(9), "D10", Regiond(10), season)
0340: 	MD6 = MatchUpCount("D11", Regiond(11), "D12", Regiond(12), season)
0341: 	MD7 = MatchUpCount("D13", Regiond(13), "D14", Regiond(14), season)
0342: 
0343: 	MS1 = MatchUpCount("A15", Regiona(15), "B15", Regionb(15), season)
0344: 	MS2 = MatchUpCount("C15", Regionc(15), "D15", Regiond(15), season)
0345: 	MF1 = MatchUpCount("S1", Semi1, "S2", Semi2, season)
0346: 	MF0 = MatchUpCount("F1", Final1, "F1", Final1, season)
0347: 
0348: 
0349: %>
0350: 
0351: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0352: 
0353: <html>
0354: <head>
0355: 	<title>March Madness - Display Correct Bracket</title>
0356: 	<link href="/mm.css" rel="stylesheet" type="text/css">
0357: </head>
0358: 
0359: <body bgcolor="#ffffff">
0360: 
0361: 
0362: <table border="0" width="950" id="table1">
0363: 
0364: 	<tr height="50" valign="top">
0365: 		<td class="norm" colspan="10"><big>This is the bracket with the actual winners and corresponding match-ups.  <br>Even though March Madness is full of surprises, most of the time there is always someone who "saw that coming".  </td>
0366: 	</tr>
0367: 
0368: 
0369: 	<tr>
0370: 		<td class="norm" bgcolor="#FFFFFF" align="center" width="16%"><b><i>
0371: 		<font size="2" color="#808080"></font></i></b></td>
0372: 		<td class="norm" size="2"  align="center" width="16%"><b><i><font size="2" color="#808080"></font></i></b></td>
0373: 		<td class="norm" size="2" align="center" width="16%"><b><i><font size="2" color="#808080"></font></i></b></td>
0374: 		<td class="norm" size="2" align="center" width="16%">
0375: 		<b><i>
0376: 		<font size="2" color="#808080"></font></i></b></td>
0377: 		<td class="norm" width="16%" align="center">
0378: 		<b><i>
0379: 		<font size="2" color="#808080"></font></i></b></td>
0380: 		<td class="norm" width="16%" align="center">
0381: 		<b><i>
0382: 		<font size="2" color="#808080"></font></i></b></td>
0383: 	</tr>
0384: 	<tr>
0385: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionA(1),"F32Pts",Season) %></font></td>
0386: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionA(9),"F16Pts",Season) %></font></td>
0387: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0388: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0389: 		<td class="norm" rowspan="2" height="20" width="119">
0390: 		<p align="center">
0391: 		 <a href="displaycorrectbracket.asp?year=<%= LastYr %>"><<</a> |<b> <%= Season %></b>
0392: 
0393: 		
0394: 		| <a href="displaycorrectbracket.asp?year=<%= NextYr %>">>>
0395: 		
0396: 		</td>
0397: 		<td class="norm" width="112" rowspan="2" height="20">
0398: 		<p align="center">
0399: 					<input type="button" value="Return" class="norm" onClick="history.back()" style="float: right"></td>
0400: 	</tr>
0401: 	<tr>
0402: 		<td class="norm" bgcolor="#C0C0C0" width="95" width="70%"><font size="2">&nbsp;<%= displayTeamFont(RegionA(2),"F32Pts",Season) %></font>
0403: 		&nbsp;<small><i>(<%= MA1 %>)</td>
0404:        
0405: 	</tr>
0406: 	<tr>
0407: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionA(3),"F32Pts",Season) %></font></td>
0408: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionA(10),"F16Pts",Season) %></font>
0409: 		&nbsp;<small><i>(<%= MA5 %>)</td>
0410: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0411: 		<font size="2">&nbsp;<%= displayTeamFont(RegionA(13),"F8Pts",Season) %></font></td>
0412: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0413: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0414: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0415: 	</tr>
0416: 	<tr>
0417: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionA(4),"F32Pts",Season) %></font>
0418: 		&nbsp;<small><i>(<%= MA2 %>)</td>
0419: 	</tr>
0420: 	<tr>
0421: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionA(5),"F32Pts",Season) %></font></td>
0422: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionA(11), "F16Pts",Season) %></font></td>
0423: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0424: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0425: 		<font size="2">&nbsp;<%= displayTeamFont(Regiona(15),"F4Pts",Season) %></font></td>
0426: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0427: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0428: 	</tr>
0429: 	<tr>
0430: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionA(6),"F32Pts",Season) %></font>
0431: 		&nbsp;<small><i>(<%= MA3 %>)</td>
0432: 	</tr>
0433: 	<tr>
0434: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionA(7),"F32Pts",Season) %></font></td>
0435: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionA(12),"F16Pts",Season) %></font>
0436: 		&nbsp;<small><i>(<%= MA6 %>)</td>
0437: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0438: 		<font size="2">&nbsp;<%= displayTeamFont(RegionA(14),"F8Pts",Season) %></font>
0439: 		&nbsp;<small><i>(<%= MA7 %>)</td>
0440: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0441: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0442: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0443: 	</tr>
0444: 	<tr>
0445: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionA(8),"F32Pts",Season) %></font>
0446: 		&nbsp;<small><i>(<%= MA4 %>)</td>
0447: 	</tr>
0448: 	<tr>
0449: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionB(1),"F32Pts",Season) %></font></td>
0450: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionB(9),"F16Pts",Season) %></font></td>
0451: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0452: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0453: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="119">
0454: 		<font size="2">&nbsp;<%= displayTeamFont(Semi1,"F2Pts",Season) %></font></td>
0455: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0456: 	</tr>
0457: 	<tr>
0458: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionB(2),"F32Pts",Season) %></font>
0459: 		&nbsp;<small><i>(<%= MB1 %>)</td>
0460: 	</tr>
0461: 	<tr>
0462: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionB(3),"F32Pts",Season) %></font></td>
0463: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionB(10),"F16Pts",Season) %></font>
0464: 		&nbsp;<small><i>(<%= MB5 %>)</td>
0465: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0466: 		<font size="2">&nbsp;<%= displayTeamFont(RegionB(13),"F8Pts",Season) %></font></td>
0467: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0468: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0469: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0470: 	</tr>
0471: 	<tr>
0472: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionB(4),"F32Pts",Season) %></font>
0473: 		&nbsp;<small><i>(<%= MB2 %>)</td>
0474: 	</tr>
0475: 	<tr>
0476: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionB(5),"F32Pts",Season) %></font></td>
0477: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionB(11), "F16Pts",Season) %></font></td>
0478: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0479: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0480: 		<font size="2">&nbsp;<%= displayTeamFont(Regionb(15),"F4Pts",Season) %></font>
0481: 		&nbsp;<small><i>(<%= MS1 %>)</td>
0482: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0483: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0484: 	</tr>
0485: 	<tr>
0486: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionB(6),"F32Pts",Season) %></font>
0487: 		&nbsp;<small><i>(<%= MB3 %>)</td>
0488: 	</tr>
0489: 	<tr>
0490: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionB(7),"F32Pts",Season) %></font></td>
0491: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionB(12),"F16Pts",Season) %></font>
0492: 		&nbsp;<small><i>(<%= MB6 %>)</td>
0493: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0494: 		<font size="2">&nbsp;<%= displayTeamFont(RegionB(14),"F8Pts",Season) %></font>
0495: 		&nbsp;<small><i>(<%= MB7 %>)</td>
0496: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0497: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0498: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0499: 	</tr>
0500: 	<tr>
0501: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionB(8),"F32Pts",Season) %></font>
0502: 		&nbsp;<small><i>(<%= MB4 %>)</td>
0503: 	</tr>
0504: 	<tr>
0505: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionC(1),"F32Pts",Season) %></font></td>
0506: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionC(9),"F16Pts",Season) %></font></td>
0507: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0508: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0509: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0510: 		<td class="norm" bgcolor="#C0C0C0" width="112" rowspan="2" height="20">
0511: 		<font size="2">&nbsp;<%= displayTeamFont(Final1,"F1Pts",Season) %></font>
0512: 		&nbsp;<small><i>(<%= MF0 %>)</td>
0513: 	</tr>
0514: 	<tr>
0515: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionC(2),"F32Pts",Season) %></font>
0516: 		&nbsp;<small><i>(<%= MC1 %>)</td>
0517: 	</tr>
0518: 	<tr>
0519: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionC(3),"F32Pts",Season) %></font></td>
0520: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionC(10),"F16Pts",Season) %></font>
0521: 		&nbsp;<small><i>(<%= MC5 %>)</td>
0522: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0523: 		<font size="2">&nbsp;<%= displayTeamFont(RegionC(13),"F8Pts",Season) %></font></td>
0524: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0525: 		<td class="norm" rowspan="2" height="20" width="119">
0526: 		<p align="right">&nbsp;</td>
0527: 		<td class="norm" width="112" rowspan="2" height="20">
0528: 		<p align="center">&nbsp;</td>
0529: 	</tr>
0530: 	<tr>
0531: 		<td class="norm" bgcolor="#C0C0C0" width="95"><font size="2">&nbsp;<%= displayTeamFont(RegionC(4),"F32Pts",Season) %></font>
0532: 		&nbsp;<small><i>(<%= MC2 %>)</td>
0533: 	</tr>
0534: 	<tr>
0535: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionC(5),"F32Pts",Season) %></font></td>
0536: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionC(11), "F16Pts",Season) %></font></td>
0537: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0538: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0539: 		<font size="2">&nbsp;<%= displayTeamFont(Regionc(15),"F4Pts",Season) %></font></td>
0540: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0541: 		<td class="norm" width="112" rowspan="2" height="20"><font size="2">&nbsp; </font> </td> 
0542: 	</tr>
0543: 	<tr>
0544: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionC(6),"F32Pts",Season) %></font>
0545: 		&nbsp;<small><i>(<%= MC3 %>)</td>
0546: 	</tr>
0547: 	<tr>
0548: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionC(7),"F32Pts",Season) %></font></td>
0549: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(RegionC(12),"F16Pts",Season) %></font>
0550: 		&nbsp;<small><i>(<%= MC6 %>)</td>
0551: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0552: 		<font size="2">&nbsp;<%= displayTeamFont(RegionC(14),"F8Pts",Season) %></font>
0553: 		&nbsp;<small><i>(<%= MC7 %>)</td>
0554: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0555: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0556: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0557: 	</tr>
0558: 	<tr>
0559: 		<td class="norm" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(RegionC(8),"F32Pts",Season) %></font>
0560: 		&nbsp;<small><i>(<%= MC4 %>)</td>
0561: 	</tr>
0562: 	<tr>
0563: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(Regiond(1),"F32Pts",Season) %></font></td>
0564: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(Regiond(9),"F16Pts",Season) %></font></td>
0565: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0566: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0567: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="119">
0568: 		<font size="2">&nbsp;<%= displayTeamFont(Semi2,"F2Pts",Season) %></font>
0569: 		&nbsp;<small><i>(<%= MF1 %>)</td>
0570: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0571: 	</tr>
0572: 	<tr>
0573: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(Regiond(2),"F32Pts",Season) %></font>
0574: 		&nbsp;<small><i>(<%= MD1 %>)		</td>
0575: 	</tr>
0576: 	<tr>
0577: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(Regiond(3),"F32Pts",Season) %></font></td>
0578: 		<td class="norm" bgcolor="#EEEEEE" rowspan="2" height="20" width="95"><font size="2">&nbsp;<%= displayTeamFont(Regiond(10),"F16Pts",Season) %></font>
0579: 		&nbsp;<small><i>(<%= MD5 %>)</td>
0580: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0581: 		<font size="2">&nbsp;<%= displayTeamFont(Regiond(13),"F8Pts",Season) %></font></td>
0582: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0583: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0584: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0585: 	</tr>
0586: 	<tr>
0587: 		<td class="norm" bgcolor="#EEEEEE" width="95"><font size="2">&nbsp;<%= displayTeamFont(Regiond(4),"F32Pts",Season) %></font>
0588: 		&nbsp;<small><i>(<%= MD2 %>)</td>
0589: 	</tr>
0590: 	<tr>
0591: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(Regiond(5),"F32Pts",Season) %></font></td>
0592: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#C0C0C0"><font size="2">&nbsp;<%= displayTeamFont(Regiond(11), "F16Pts",Season) %></font></td>
0593: 		<td class="norm" rowspan="2" height="20" width="110">&nbsp;</td>
0594: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="105">
0595: 		<font size="2">&nbsp;<%= displayTeamFont(Regiond(15),"F4Pts",Season) %></font>
0596: 		&nbsp;<small><i>(<%= MS2 %>)</td>
0597: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0598: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0599: 	</tr>
0600: 	<tr>
0601: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(Regiond(6),"F32Pts",Season) %></font>
0602: 		&nbsp;<small><i>(<%= MD3 %>)</td>
0603: 	</tr>
0604: 	<tr>
0605: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(Regiond(7),"F32Pts",Season) %></font></td>
0606: 		<td class="norm" rowspan="2" height="20" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(Regiond(12),"F16Pts",Season) %></font>
0607: 		&nbsp;<small><i>(<%= MD6 %>)</td>
0608: 		<td class="norm" bgcolor="#C0C0C0" rowspan="2" height="20" width="110">
0609: 		<font size="2">&nbsp;<%= displayTeamFont(Regiond(14),"F8Pts",Season) %></font>
0610: 		&nbsp;<small><i>(<%= MD7 %>)</td>
0611: 		<td class="norm" rowspan="2" height="20" width="105">&nbsp;</td>
0612: 		<td class="norm" rowspan="2" height="20" width="119">&nbsp;</td>
0613: 		<td class="norm" width="112" rowspan="2" height="20">&nbsp;</td>
0614: 	</tr>
0615: 	<tr>
0616: 		<td class="norm" width="95" bgcolor="#EEEEEE"><font size="2">&nbsp;<%= displayTeamFont(Regiond(8),"F32Pts",Season) %></font>
0617: 		&nbsp;<small><i>(<%= MD4 %>)</td>
0618: 	</tr>
0619: <% If ShowIt = "Y" Then %>
0620: 	<tr>
0621: 		<td class="norm" colspan="10">
0622: 		<p align="center"><font color="#808080"><i><b>
0623: 		<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"> 
0624: 		represents the number of points earned in that round.</font></b></i></font>
0625: 		&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> 
0626: 		represents the number of entries with that match up.</font></b></i></font></td>
0627: 	</tr>
0628: <% End If %>
0629: 	<tr>
0630: 		<td class="norm" width="53">&nbsp;</td>
0631: 		<td colspan="5">&nbsp;</td>
0632: 	</tr>
0633: 	<tr>
0634: 		<td class="norm" colspan="10"><big>(###) = Number of entries with that match up. Click on <b>(###)</b> to see all the entries who has this match up.
0635: 		</td>
0636: 	</tr>
0637: </table>
0638: 
0639: </body>
0640: </html>
0641: 
0642: <%
0643: 
0644: %>