<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>cal &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/cal/</link>
	<description>Feed of posts on WordPress.com tagged "cal"</description>
	<pubDate>Sat, 11 Oct 2008 07:14:44 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Composite Application Library Commanding]]></title>
<link>http://tarangw.wordpress.com/?p=20</link>
<pubDate>Thu, 09 Oct 2008 22:35:56 +0000</pubDate>
<dc:creator>tarangwaghela</dc:creator>
<guid>http://tarangw.tr.wordpress.com/2008/10/10/composite-application-library-commanding/</guid>
<description><![CDATA[If you are using a separated presentation pattern then it is likely that you have come across CAB an]]></description>
<content:encoded><![CDATA[<p>If you are using a separated presentation pattern then it is likely that you have come across CAB and more recently Composite Application Guidance for WPF (CAG) + Composite Application Library (CAL). If you are using WPF then you would come across coupling issue introduced by using the default RoutedUICommand which requires event handlers to be defined in the receiving view. I just realized that CAL introduces two approaches viz. delegation and composition to move away from tight coupling implemented in the library via DelegateCommand and CompositeCommand classes.</p>
<p>Delegation: Here a command is used that delegates off its handling logic, either through events or delegates where it can be handled externally by a class such as a presenter, service, controller, and so on. The command requires Execute and CanExecute method handlers.</p>
<p>Composition: This is a variation of delegation. Composite command delegates off its hadling logic to a set of child elements. The composite command needs to provide a way for the child commands to be registered. Executing the composite command executes the children. The composite commands CanExecute returns false, unless all the children return true.</p>
<p>Further details including useful diagrams can be found in the Composite Application Guidance for WPF June 2008.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Make Exporting Excel Formulas Fully Multilanguage Aware]]></title>
<link>http://noisyvan.wordpress.com/?p=32</link>
<pubDate>Thu, 09 Oct 2008 16:18:39 +0000</pubDate>
<dc:creator>mart1n0</dc:creator>
<guid>http://noisyvan.tr.wordpress.com/2008/10/09/make-exporting-excel-formulas-fully-multilanguage-aware/</guid>
<description><![CDATA[I have been struggling with exporting data from Dynamics NAV to Excel Spreadsheets including formula]]></description>
<content:encoded><![CDATA[<p>I have been struggling with exporting data from Dynamics NAV to Excel Spreadsheets including formulas lately. I had the problem with a custom developed export to excel so I checked the code in the Excel Buffer table to see how standard Navision solved the problem only to see that the problem also existed in standard NAV too.</p>
<p>Let's explain the problem first. What happens is that for people with a Microsoft Office version in Language A and a Dynamics NAV client in language B, Navision does not translate the formulas correctly. You can reproduce it as follows.</p>
<p>Make sure the language of your Dynamics NAV client and of Microsoft Office are different. Open your Dynamics NAV client go to the Budget form and run the "Export to Excel ..." function. You'll see that the formulas aren't be translated as they should, giving errors in Excel.</p>
[caption id="attachment_42" align="alignnone" width="550" caption="English NAV Client and Spanish Office, wrong formula"]<a href="http://noisyvan.files.wordpress.com/2008/10/nueva-imagen2.png"><img class="size-full wp-image-42" title="English NAV Client and Spanish Office, wrong formula" src="http://noisyvan.wordpress.com/files/2008/10/nueva-imagen2.png" alt="English NAV Client and Spanish Office, wrong formula" width="550" height="244" /></a>[/caption]
<p>Standard Dynamics NAV uses multilanguage text constants to translate the Formulas in the Excel Buffer table. The problem is that this only works if your Microsoft Office language equals your Dynamics NAV Client language and on top of this, for it to work you need to translate <strong>ALL</strong> the formulas you want to use to <strong>ALL</strong> the languages you want to use. Not a fun thing to do but feel free to use a page like this <a title="fonctions XL en 9 langues" href="http://cherbe.free.fr/traduc_fonctions_xl97.html" target="_blank">fonctions XL en 9 langues</a> or this <a title="Microsoft Excel function translations" href="http://dolf.trieschnigg.nl/excel/excel.html" target="_blank">Microsoft Excel function translations</a> to get started putting all your formulas into multilanguage text constants.</p>
<p>Since we have some workstations where the Dynamics NAV client and Microsoft Office use a different language, I was looking for something better and <a title="NAV 4.0, Localized Excel and property Formula" href="http://www.mibuso.com/forum/viewtopic.php?f=5&#38;t=20057&#38;hilit=excel+formula" target="_blank">this post on mibuso</a> handed me the solution. Below I put the code if you want this feature to work for the Excel Buffer table but you'll see that it is easy to adopt it to all of you custom code that exports to Excel with formulas.</p>
<p><strong>Table 370 - Excel Buffer</strong></p>
<p>Add the following local variables to the <strong>CreateSheet </strong>function:</p>
<ul>
<li><strong>autScriptControl</strong> Automation variable with SubType 'Microsoft Script Control 1.0'.ScriptControl</li>
<li><strong>txtCode</strong> Text variable with Length 1024</li>
<li><strong>autDictionary</strong> Automation variable with Subtype 'Microsoft Scripting Runtime'.Dictionary</li>
<li><strong>txtFormula</strong> Text variable with Length 1024</li>
<li><strong>intI</strong> Integer variable</li>
</ul>
<p>Remove all languages but English from the text constants SUM, SUMIF and others should there be others.</p>
<p>Change to code of the <strong>CreateSheet</strong> function as below:</p>
<pre>XlWrkSht.Name := SheetName;
IF ReportHeader &#60;&#62; '' THEN
XlWrkSht.PageSetup.LeftHeader :=
STRSUBSTNO('%1%2%1%3%4',GetExcelReference(1),ReportHeader,CRLF,CompanyName);
XlWrkSht.PageSetup.RightHeader :=
STRSUBSTNO(Text006,GetExcelReference(2),GetExcelReference(3),CRLF,UserID2);
XlWrkSht.PageSetup.Orientation := XlLandscape;
IF FIND('-') THEN BEGIN
<strong>//CRQ.001 start insert
CREATE(autDictionary);
CREATE(autScriptControl);
//CRQ.001 end insert</strong>
REPEAT
RecNo := RecNo + 1;
Window.UPDATE(1,ROUND(RecNo / TotalRecNo * 10000,1));
IF NumberFormat &#60;&#62; '' THEN
XlWrkSht.Range(xlColID + xlRowID).NumberFormat := NumberFormat;
<strong>//CRQ.001 delete start
//  IF Formula = '' THEN
//    XlWrkSht.Range(xlColID + xlRowID).Value := "Cell Value as Text"
//  ELSE
//    XlWrkSht.Range(xlColID + xlRowID).Formula := GetFormula;
//CRQ.001 delete end
//CRQ.001 start insert
IF Formula = '' THEN
XlWrkSht.Range(xlColID + xlRowID).Value := "Cell Value as Text"
ELSE BEGIN
txtFormula := GetFormula();
txtCode :='objCell.Formula=objList.Item(1);';
intI := 1;
autScriptControl.Language := 'JScript';
autScriptControl.AddObject('objCell', XlWrkSht.Range(xlColID + xlRowID));// Add excel cell object
autScriptControl.AddObject('objList', autDictionary);                    // Add dictionary object
autDictionary.Add(intI,txtFormula);                                      // Add formula to dictionary object
autScriptControl.ExecuteStatement(txtCode);                              // Execute javascript
autDictionary.RemoveAll();                                               // Remove item from dictionary
autScriptControl.Reset();                                                // Reset Script object for next using
END;
//CRQ.001 end insert</strong>
IF Comment &#60;&#62; '' THEN
XlWrkSht.Range(xlColID + xlRowID).AddComment := Comment;
IF Bold THEN
XlWrkSht.Range(xlColID + xlRowID).Font.Bold := Bold;
IF Italic THEN
XlWrkSht.Range(xlColID + xlRowID).Font.Italic := Italic;
XlWrkSht.Range(xlColID + xlRowID).Borders.LineStyle := XlLineStyleNone;
IF Underline THEN
XlWrkSht.Range(xlColID + xlRowID).Borders.Item(XlEdgeBottom).LineStyle := XlContinuous;
UNTIL NEXT = 0;
<strong>//CRQ.001 start insert
CLEAR(autDictionary);
CLEAR(autScriptControl);
//CRQ.001 end insert</strong>
XlWrkSht.Range(GetExcelReference(5) + ':' + xlColID + xlRowID).Columns.AutoFit;
END;</pre>
<p>Let's have a look at the "Export to Excel ..." function on the Budget form again.</p>
[caption id="attachment_43" align="alignnone" width="550" caption="English NAV Client and Spanish Office, correct formula"]<a href="http://noisyvan.files.wordpress.com/2008/10/nueva-imagen-1.png"><img class="size-full wp-image-43" title="English NAV Client and Spanish Office, correct formula" src="http://noisyvan.wordpress.com/files/2008/10/nueva-imagen-1.png" alt="English NAV Client and Spanish Office, correct formula" width="550" height="244" /></a>[/caption]
<p>That's all, it is that simple, no more text constants, no more looking for translations of a formula, just put all your fomulas in English and let Excel do the work. Please let me know if you know a faster/better/cleaner way to do this.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Week 6 Results/Week 7 Analysis-College FB]]></title>
<link>http://korkster.wordpress.com/?p=196</link>
<pubDate>Thu, 09 Oct 2008 00:08:24 +0000</pubDate>
<dc:creator>korkster</dc:creator>
<guid>http://korkster.tr.wordpress.com/2008/10/08/week-6-resultsweek-7-analysis-college-fb/</guid>
<description><![CDATA[For those of you wondering where the weekly post has been, we do apologize for the inconvenience.  ]]></description>
<content:encoded><![CDATA[<p>For those of you wondering where the weekly post has been, we do apologize for the inconvenience.  Last Friday Korky came down with a rather nasty bout of pneumonia and was put in the hospital for 5 days.  Not to fear, he's out and writing again.  My thanks to my great friend Steve for visiting and keeping his spirits high during the downtime.</p>
<p>Enough of that. Since we are already a bit late on this, we're going to combine the weekly posts. Usually we have one post just announcing the results and ranking, then another around Wednesday to predict the following weeks' games. So we'll just combine the two here this week.</p>
<p>Week 6 ended up almost exactly the way we thought it would, except for the lackluster performance of South Florida, who seems to be repeating their nose-dive act of 2007. Maybe we'll all learn not to run them up to the top 10 so soon....oh wait, we do that with Georgia every year too don't we. But as for general comments we have a few regarding this week's rankings.</p>
<p>Since Florida State seems to have settled on a QB they look a lot better, but we'll wait for them them to win another game at least before ranking.  The ACC and Pac 10 are causing most of the heartburn this year it seems.  The former is nearly flat lining this year, and the latter is so topsy-turvy you never know who’s gonna beat whom any week.  Plus, the Big 10 has become the Big 2 again, but not the ones we usually think of.  PSU has replaced Michigan and Wisconsin has taken over the occasional interloper role Iowa and Michigan State shared for decades.</p>
<p>And because of the change in who the power teams are in some of those conferences, several schedules are back-loaded this year, even though they’re playing the same schools on the same weeks as in years past.  You’d think some would be easy, like OSU-Mich not being for all the marbles this year, but USC thought the same last year vs. a mediocre UCLA, and that didn’t turn out so well.  So some of those year end rivalry games can still have an impact.  Auburn is perfectly capable of biting ‘Bama in the backside, though I don’t see A&#38;M beating Texas no matter what.  And keep in mind that OU has struggled with the Stillwater crowd in recent years.</p>
<p>In any case, there were some minor surprises but nothing that we didn't allude to.  We did mention that we were high on the Vandy-Auburn game and sure enough the Tigers did fold under the pressure. We were a bit disappointed in Fresno State not taking care of business against Hawaii too.  So, here we go...the new Kathman-Patton Top 25 with a look toward some pretty important games here in Week 7 that may prove to disrupt the list rather drastically next week.</p>
<p><strong>#1 Oklahoma (5-0). Defeated Baylor (2-3) 49-17. This week: #5 Texas (5-0) in Dallas.</strong> Oklahoma pretty much did what they were supposed to do against Baylor, seeing that the Bears haven't had a winning season since perhaps Mike Singletary was an All-American there.  Needless to say this week's Red River Rivalry with Texas will take on a special importance with both in the top 5. The real facts are here, that neither team has played a gamely opponent yet. OU's opponents are a combined 12-15 on the season while Texas' are 11-16. OU has outscored their opponents 248-69 (avg 49.6 - 13,8) while Texas has outscored their opponents 236-57 (avg 47.2 to 11.4), so hardly a demanding schedule so far. But, of course that all changes on Saturday. This will be the 10th time that this matchup has seen two top-5 teams contesting for supremacy, with Oklahoma winning the last 3 times both were ranked in the top 5. We dont see this changing much.  Texas has been able to easily overwhelm their opponents with an oversized defensive line that stops the running game and then eventually drowns the opposing QB.  However against the OU offensive line, they'll have no such luck. Sooner QB Sam Bradford, one of the most accurate and highly ranked QB's in the country, should have a field day against a very inexperienced Texas secondary that has given up HUGE passing yardage (over 300 against Rice and over 400 against UTEP).  On the flip side, OU's defense is very fast, and the secondary has been outstanding. The OU defense allowed only  36 total yards against Chattanooga, and not a single 300 yard passing day.  With OU tending toward big first quarters (over 100 pts of their 248 came in the 1st) its possible that this game could be over fast.  Sooners by 17.</p>
<p><strong>#2 Missouri (5-0). Defeated Nebraska (2-3) 52-17. This week: #17 Oklahoma State (5-0) at home.</strong> We must admit that the Mizzou-Nebraska was a disappointment.  After being the staunch defensive coach at LSU, everyone was expecting more from the Nebraska D which averaged well over 40 pts/game last year. Such was not the case. Missouri scored at will, and easily all night long. So we credit a great Missouri offense, but perhaps not as much as a really bad Nebraska defense, and almost inept offense.  We think that the Tigers are in for a much tougher game this week with Oklahoma State. With the Mizzou defense still somewhat suspect from a pass defense standpoint, this could be a perfect storm with Cowboy QB Zac Robinson riding into town. Robinson very simply is one of the top ranking QB's in the nation with a 72% efficiency and with a 204.58 passing rating (compare this to OU's Sam Bradford at 204.97 and Tiger QB Chase Daniels at 196.28). Robinson also can add an extra dimension by running the ball as he did last week against Texas A&#38;M when he ran for 66 yards and 2 touchdowns.  All in all OKST averages 530 yards per game and about 53 points, so you do the math (yes 1 point per 10 yards gained), which is pretty phenomenal. We think both defenses could get a workout.  This is definitely an upset watch game for us this week, but we'll edge with the home team. Missouri by 4.</p>
<p><strong>#3 LSU (4-0). Did not play last week. This week: At #12 Florida (4-1).</strong> It's been 18 years since there has been a meeting of the former two national champions, so in the first of many SEC showdowns, this one should go a long way to help clear up some lingering doubts on both teams. To say that Florida has been an enigma this year would be an understatement. Last year's Heisman winner, Gator QB Tim Tebow has been a bit throttled this year in efforts by Coach Urban Meyer to reduce his hits (he had well over 200 last year).  As such, Tebow has been somewhat relegated to more of a pocket passer, with some escapism allowed on rare occasions.  WR Percy Harvin has also had some injury issues.  However, Florida DID put a nice game together this past week in dominating a mediocre Arkansas team. LSU is in its familiar setting, atop the SEC West along with Alabama (while Florida sits a game behind Vanderbilt and tied with Georgia). But LSU relies on its defense, and its a very good one.  The offense has had its ups and downs this year as Coach Les Miles seems to have finally settled on Sophomore QB Jarrett Lee who has been impressive in his last two games. LSU has won 4 of the last 6 meetings between the two ball clubs, and in the battle of "former" champions, the home team has never lost.  While we're not always so respectful of such stats, in this kind of battle you can't ignore them either. LSU by 6.</p>
<p><strong>#4 Alabama (6-0). Defeated Kentucky (4-1) 17-14 at home. This week: Bye.</strong> After coming off a mixed-view victory over Georgia the week before, the Crimson Tide almost let one slip away on the last play of the game. But, good teams find a way to win when they play below par, and so they did against Kentucky. It seemed that the Tide was playing the whole game the way it did in the second half against Georgia, showing defensive vulnerability in both run and pass.  The game was won when the Kentucky QB literally dropped the ball and it rolled into the end zone and was recovered for an Alabama TD.  Hence we still don't buy into the #2 ranking that the AP writers seem to have magically manufactured.</p>
<p><strong>#5 Texas (5-0). Defeated Colorado (3-2) 38-14 in Boulder. This week: #1 Oklahoma in Dallas.</strong> See analysis and prediction under Oklahoma. Sooners by 17.</p>
<p><strong>#6 Penn State (6-0). Defeated Purdue (2-3) 20-6 at Purdue. This week: At #20 Wisconsin.</strong> PSU-Purdue is always a tough rivarlry, especially when played in Indiana. However, the Nittany Lions controlled the game in most every way. It was a typical PSU game, with a solid, tough defense leading the way so that an consistent offense could rack up yet another 400+ yard offensive day and put up points while eating the clock.  QB Daryll Clark posted 18/26 for 220 yards while RB Evan Royster ground out 141 yards on the ground. Wisconsin lost a heart breaker to Ohio State. The Badger defense allowed the Buckeyes to drive down the field with less than 2 minutes left, to hand over the victory.  All of a sudden, Wisconsin is sitting at 3-2 with back-to-back conference losses. With the shape of the Big-10 this year, the Badgers have to make a stand and it has to be THIS week against conference co-leader Penn State.  The bright spot for Wisconsin however is still that P.J. Hill is nearly unstoppable and the Offensive Line is reall stellar. We think the Nittany Lions could be in for a tough Saturday. However, with a questionable defense, the Badgers may just be in the same kind of matchup, if not worse, as they just had with Ohio State. Penn State by 10.<strong><br />
</strong></p>
<p><strong>#7 Texas Tech (5-0). Defeated Kansas State (3-2) 58-28 at KSU. This week: Nebraska (3-2) at home.</strong> The Red Raiders had all cylinders clicking against the Wildcats in a showing that was worthy of their high ranking. Graham Harrell led the TTU offense to yet another 600+ yard offensive day going 38/51 for 454 yards and 6 touchdowns, two of which were to Michael Crabtree. Perhaps hidden under the gaudy passing numbers was the fact that the Red Raiders ran the ball for almost 140 yards again, with both Shannon Woods and Byron Batch sharing the load. The Tech defense gave up some significant yards on its first drive, but after that shut the Wildcats down to nil, until a blocked punt and a late TD made the score much higher than was actually endured.  We've already lamented Nebraska's poor defensive performance against Mizzou (see above).  While we're really sure that Nebraska couldn't possibly be so bad two weeks in a row, we also remember that TTU went to Lincoln last year and hung 70 on the Cornhuskers. We're pretty sure that won't happen, but comfortable in saying that Tech rolls.  Red Raiders by 21.</p>
<p><strong>#8 USC (3-1). Defeated Oregon (4-2) 44-10 at home. This week: Arizona State (2-3) at home.</strong> After a very tacky loss to Oregon State, the USC Trojans went home and apparently had a revitalization treatment, Pete Carroll style. The game started eerily familar, with the Ducks running game really taking it to the Trojan D. This didn't last long however, as the USC offense was NOT comotose as it was against the Beavers. QB Mike Sanchez found seven different receivers for 341 yards and 3 TDs. The turning point was just prior to halftime when the USC offense/defense exploded for 19 point in the last 40 seconds to go up 27-10.  Arizona State is another team that has fallen from grace rather quickly having been originally a top 10 contender. Things just haven't come together for ASU the way they had hoped, and after losing to Cal 24-14 (their third loss in a row) things don't look promising. The Sun Devils have lost 4 in a row against USC and that string could be easily extended. USC might have to bring in backup QB Mitch Mustain since Mike Sanchez endured a bone bruise against Oregon. It shouldn't matter tho.  Trojans by 13.</p>
<p><strong>#9 Brigham Young (5-0). Defeated Utah State (1-4) 34-14 at Utah State. This Week: New Mexico (3-3) at home.</strong> We're pretty sure that everyone in the country was looking for a blowout in the BYU-Utah State game, but it didn't happen, unless you call a 20 point win a blowout.  While BYU had a solid game, Utah State had allowed 66, 58 and 42 hung on them in the previous 3 weeks by non-ranked teams. We expected much more from BYU, but perhaps they rested too much. BYU probably has one of the easier schedules of top 10 teams right now. TCU and perhaps Utah could be their only ranked opponent tests the rest of the year, so BYU must put pedal to the metal and annihilate their opponents if they look to advance. Once BCS rankings come out, we're figuring the Cougars could drop a few spots. New Mexico will provide token resistance this week. Cougars by 24.</p>
<p><strong>#10 Ohio State (5-1). Defeated #20 Wisconsin (3-2) 20-17 at Wisconsin.  This week: Purdue (2-3) at home.</strong> Watching last week's OSU-Wisconsin game gave us the deja-vu that we were watching one of the classic Big-10 games of the past, except that the ball was in the air too much. But nevertheless, the Buckeyes showed some real character going down 17-13 late in the game when they gave up chunks of rushing yardage to P.J. Hill and the go ahead TD.  Terrelle Pryor took hold of the OSU offense and marched the length of the field for the go-ahead score with 1:08 left. The defense held the rest of the game. Chris (Beanie) Wells also had a big day rusing for 168 yards and a TD. With the maturation of Pryor and a healthy Wells, we're sure that OSU can evolve into a contender in not only the Big-10, but also nationally. Purdue, on the other hand, looks to play the spoiler role.  They played well against Penn State, but lacked consistency against a tough defense. Purdue might find the going even tougher against OSU.  Buckeyes by 10.</p>
<p><strong>#11 Georgia (4-1). Did not play last week. This week: Tennessee (2-3) at home.</strong> The Bulldogs have had an extra week to get rid of the bad taste of a 41-30 thumping by Alabama. They hopefully watched film of the second half of that game and if so, can draw tremendous confidence. The Georgia defense is as strong as any when they focus, and they'll be at home. Tennessee has struggled against itself all season. The Vols can move the ball when they have to, but have been characterized with large-scale defensive lapses, and untimely offensive gaffes.  They played Auburn very well, but could never get things going offensively, though their defense was outstanding. A similar story occurred in the UCLA game earlier in the year.  If this game was being played in Tennessee, we'd be a bit more contemplative, but since its not, we don't see much way that Georgia doesn't bounce back with a vengeance.  Bulldogs by 24.</p>
<p><strong>#12 Florida (4-1). Defeated Arkansas (2-3) 38-7 at Arkansas. This week: #3 LSU at home.</strong> See analysis under #3 LSU.  Tigers by 6.</p>
<p><strong>#13 Vanderbilt (5-0). Defeated #22 Auburn (4-2) 14-13 at home. This week: At Mississippi State (1-4). </strong>There aren't too many in the CFB community that would have thought that the Commodores would have been atop the SEC East six weeks into the season.  The fact of the matter, is that if Vanderbilt can beat Mississippi State on the road this weekend, they'll be off to their best start in 80 years. They are already at their highest ranking in 50 years, so this team really has the impetus. To prove that, they lost their 1st string QB last week (Chris Nickson) so backup Mackenzi Adams stepped in and threw 13/23 for 153 and 2 Touchdowns against one of the stingiest defenses in the country. they also gave up two quick TD's to Auburn and fought back to win. Hapless Mississippi State is yet again the cellar dweller in the SEC West, but they seem to be a team rebuilding.  Despite their 1-4 record they have averaged giving up only 21 points per game, and even lost to Auburn only 3-2.  The trouble is on the offensive side of the ball where they are averaging only 16 points/game.  That could be a bad sign against a very tough Vandy defense. We think this might be closer than alot of people think, because the Commodores are coming off a tremendously emotional victory, so its normal to play down a little. We still think its definable for them tho. Vanderbilt by 13.</p>
<p><strong>#14 Utah (6-0). Defeated Oregon State (2-3) 31-28 at home. This week: At Wyoming (2-4). </strong>Utah has been consistently good this year, and proved it by rallying with 8 points in the final 89 seconds to beat Oregon State just one week after the Beavers had upset USC.  While the Utes seemed to move the ball, their defense was plagued all day, giving up over 400 yards of total offense to the Beavers  However, against Wyoming this shouldn't matter much. Wyoming's offense is averging only 9 points per game. Utes by 28.</p>
<p><strong>#15 Kansas (4-1). Defeated Iowa State (2-3) 35-33 at Ames, IA. This Week: Colorado (3-2) at home.</strong> Kansas has struggled all year despite great efforts by Todd Reesing and his offense. However, they had to rally from 20 points down to win last week, and that begins to be a warning sign.  Kudos to the Jayhawks to come back from that deficit, but whoa did they get exploited early on. Reesing and company generated 436 yards of offense but gave up 4 turnovers,including 1 interception.  Colorado seemed poise to make a stand against Texas but found themselves out of their league. Kansas isn't in the same league, but they're certainly higher than the Buffaloes.  Jayhawks by 10.</p>
<p><strong>#16 Boise State (4-0). Defeated La Tech (2-2) 38-3 at home. This week: At Southern Miss (2-3).</strong> Let's not kid ourselves, BSU is a force to be reckoned with and are a near shoe-in to win the WAC this year. The Broncos generated 564 yards of total offense in obliterating Louisiana Tech, led by Kellen Moore who threw for 2 TDs and D.J. Harper who ran for 2 more. Up next is Southern Miss, who comes off of a tough 40-37 overtime loss to UTEP. Look for the Broncos to score at will. Boise State by 23.</p>
<p><strong>#17 Oklahoma State (5-0). Defeated Texas A&#38;M (2-3) 56-28. This week: At #2 Missouri (5-0). </strong> Actually we think that this game could be one of the key matchups of the week. Read about it under #2 Missouri. Tigers by 4.</p>
<p><strong>#18 Michigan State (5-1). Defeated Iowa (3-3) 16-13 at home.  This week: At Northwestern (5-0).</strong> It does seem a bit weird ranking a 5-1 MSU and not ranking the 5-0 Northwestern Wildcats but we can either declare our brilliance or wallow in our humility at the end of this game. Save for a comeback that stalled against Cal in week one, we'd be having two undefeateds here, but such is not the case. MSU continues to make some noise worthy of a ranking while Northwestern just pretty much gotten fat on some easy pickings. Both teams disposed of a common foe, Iowa the last two weeks, MSU winning 16-13  and Northwestern winning 22-17. MSU sports the better offense with RB Javon Ringer, while Northwestern has a great defense (allowing only around 12 points per game. We think that the Spartans should be able to push the Wildcats around and work for a methodic offensive win Michigan State by 11. <strong><br />
</strong></p>
<p><strong>#19 Virginia Tech (5-1). defeated Western Kentucky (2-4) 27-13 at home. This week: Bye.</strong> The Hokies are beginning to play the kind of ball that everyone hoped they would. They've always been characterized by a strong defense, outstanding special teams, but a rather mediocre offense that spun games away at times. Now firmly entrenched Sophomore QB Tyrod Taylor has lead his team to four straight victories after being humiliated by East Carolina in week 1.  The interesting thing is that Taylor has settled in the last few weeks at around a 60-62% accuracy and 170+ yards, which is what is expected of the offense for Tech. He's even put QB ratings in the high 150's, which is darned good.  Watch for a rise from VT as they seem to be emerging as the team to beat in the ACC.<strong><br />
</strong></p>
<p><strong>#20 Wisconsin (3-2). Lost to Ohio State (5-1) 20-17.  This week: #6 Penn State at home. </strong> Read analysis under #6 Penn State.  Last stand for Wisconsin before being labeled a "spoiler".  PSU by 20.<strong><br />
</strong></p>
<p><strong>#21 South Florida (5-1). Lost to Pittsburgh (4-1) 26-21. This week: Bye.</strong> To say that the Bulls were uninspired and disappointing would be an understatement. They'll need to buck up quickly so that don't repeat their 2007 dive.</p>
<p><strong>#22 Auburn (4-2). Lost to Vanderbilt (5-0) 14-13 at Vanderbilt. This week: Arkansas (2-3) at home.</strong> Poor Tommy Tubberville. He's got to be thinking how long does it take to learn a new offense?  But thats just what's going on.  There's absolutely nothing wrong with the Tiger Defense, but we imagine push came to shove when Offensive Coordinator Tony Franklin was fired because his offense was 104th in the nation. So, maybe this is a good move.  We'll see as an underachieving Arkansas comes calling. Arkansas just doesnt seem to have all the pieces in the right spots right now.  QB Casy Dick is making all kinds of mistakes, and most have been terribly costly. The truth is though, that if the Razorbacks could have ONE good game it could be interesting. It's very hard for us to predict this one, but our hunch is that Arkansas won't be able to do anything against the Auburn defense, and that the AU offense, in whatever mode, should be able to capitalize.  Auburn by 8.</p>
<p><strong>#23 TCU (5-1). Defeated San Diego State (1-4) 41-7 at home. This week: At Colorado State (3-3). </strong> Don't look now, but here's comes TCU again. After getting dumped hard by Oklahoma a few weeks ago, TCU didn't let that settle in. They have managed to pick up the pieces and move on with the same tough defense. On the offensive side of the ball, TCU does it mostly on the ground. For instance in their drubbing of SDSU, backup QB Marcus Jackson threw for 115 yards and a TD, but also ran for 131 yards and 3 TDs. Their opponent this week, Colorado State, comes off an impressive victory over UNLV where their offense generated over 500 yards of offense. QB Billy Ferris was 15/21 for 294 yards and a TD, while RB Gartrell Johnson steamrolled through the UNLV defense for 191 yards and 3 TDs.  So what we seem to have is two very good offenses going at one another. TCU might have the upper hand in defense which could make the difference.  Horned Frogs by 8.</p>
<p><strong>#24 North Carolina (4-1). Defeated UConn (5-1) 38-12 at home.  This week: Notre Dame (4-1) at home. </strong>In a conference that's certainly not impressing anyone this year, North Carolina somehow has found a way to make things exciting. In last week's game they kept sending a linebacker at the punter, kept handing off to a former safety and somehow put its bulky defensive tackle in position to intercept a pass. The Tar Heels' defense got offensive -- and for that matter, so did the offense and special teams -- and that led to a statement victory. They'll host a rebuilding, but much better Fighting Irish team that seems to be playing better each week. The Irish have an identical record at 4-1 but aren't ranked, the first time in 28 occasions the Irish have started a season with only one loss through five games and still been unranked. This game proves to be season maker or breaker for North Carolina though, much more so than for ND.  As such we wonder if Butch Davis' team is up to the challenge.  We're putting this one on upset watch, and giving the edge to the Irish.  Notre Dame by 6.</p>
<p><strong>#25 California (4-1). Defeated Arizona State (2-3) 24-14 at home. This week: Bye.</strong> The Bears round up the top 25 this week and enter after a pretty nice win over ASU. Cal has gradually seemed to emerge as at least a player in the Pac-10 now. They can put lots of points on the board (over 40 in two of their last 4 games) or they can grind out victories as they did over the Sun Devils. QB Nate Longshore was 17/28 for 198 yards and 3 TDs last week for instance. Of note tho, the Cal defense forced 3 turnovers that fueled the overal victory.</p>
<p>Dropping out: Oregon, Connecticut, Fresno State</p>
<p>On the Bubble: Northwestern, Florida State</p>
<p>Most Impressive: Missouri, Penn State, Texas Tech, USC</p>
<p>Least Impressive:  South Florida, Auburn</p>
<p>Top 25 Composition: Big-12 (6), SEC (6), Big-10 (4), MWAC (3), ACC (2), PAC-10 (2), WAC (1), Big-East (1)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Enterprise CALs]]></title>
<link>http://richfrombechtle.wordpress.com/?p=413</link>
<pubDate>Wed, 08 Oct 2008 20:54:26 +0000</pubDate>
<dc:creator>richfrombechtle</dc:creator>
<guid>http://richfrombechtle.tr.wordpress.com/2008/10/08/microsoft-enterprise-cals/</guid>
<description><![CDATA[Microsoft Enterprise CALs are a relatively new addition to the world of MS licensing, and from conve]]></description>
<content:encoded><![CDATA[<p>Microsoft Enterprise CALs are a relatively new addition to the world of MS licensing, and from conversations I've had at work, I know some people are a little unsure as to what they're for, how they're licensed etc.</p>
<p><strong>Why have they made more CALs?</strong></p>
<p>A lot of people viewed the addition of these extra CALs as a way for Microsoft to make more money and make life more difficult, but that's not the case at all. The Enterprise CALs actually give organizations more flexibilty and help reduce wasted expenditure on software.</p>
<p><strong>What do they do?</strong></p>
<p>The Enterprise CALs offer an extended range of features over and above the Standard CAL; this can be thing such as Unified Messaging, Call Management or Excel Services. I'll give a breakdown of the complete differences later in this post.</p>
<p><strong>How are they licensed?</strong></p>
<p>There are 2 main points to this and not everyone is aware of them.</p>
<p>1) The Enterprise CALs are Additive, which means you must have the Standard CAL as well in order to be correctly licensed. So Std CAL + ENt CAL = :-)</p>
<p>2) You aren't required to have the same number of Enterprise CALs as you have Standard CALs. For example, if a company has 500 workers who use Outlook, all 500 will need an Exchange Std CAL. However if only 46 of those need Unified Messaging (Voicemail in their inbox etc), you would need just 46 additive Enterprise CALs so 500 Std + 46 Ent = :-)</p>
<p> </p>
<p><strong>Which products have Standard &#38; Enterprise CALs?</strong></p>
<p>Exchange 2007, Office Communications Server (OCS) 2007 and Sharepoint Server (MOSS) 2007.</p>
<p>Here is an explanation as to the differences between the Std &#38; Ent CALs for the products listed above:</p>
<p><strong>Exchange 2007:</strong></p>
<p>Standard CAL gives:</p>
<ul>
<li>Email, Shared Calendars, contacts etc</li>
<li>Outlook Web Access (OWA)</li>
<li>ActiveSync</li>
<li>Managed E-Mail Folders (Default)</li>
</ul>
<p><strong>On top of that, the Enterprise CAL gives:</strong></p>
<ul>
<li>Advanced ActiveSync Policies (with Exchange 2007 SP1)</li>
<li>Unified Messaging - A single inbox for mail, voice and fax</li>
<li>Per User/Per distribution list journaling</li>
<li>Managed E-Mail Folders (Custom)</li>
</ul>
<p><strong>Office Communications Server (OCS) 2007:</strong></p>
<p>Standard CAL gives:</p>
<ul>
<li>Presence- Instantly find and communicate with fellow workers. Use presence to see people's online status and initiate real-time conversations</li>
<li>Federation-Establish trusted relationships between your organization and others, allowing workers to communicate via IM (Instant Messaging)</li>
</ul>
<p><strong>On top of that, the Enterprise CAL offers:</strong></p>
<ul>
<li>Conferencing--Experience multi-party audio/video conferencing from within Microsoft Office Communicator.<br />
Meeting scheduling--Instantly establish ad-hoc meetings from a variety of Microsoft Office applications.<br />
Conduct online meetings--Use the power of the Live Meeting client to conduct conference meetings with participants inside and outside the organization with an on premise solution.<br />
VOIP capabilities: Software-powered VoIP that works with your existing messaging and telephony infrastructure and can adapt to your changing business needs.<br />
Call Management--Give users call management capabilities like call forwarding, hold, dynamic routing, and simultaneous ringing on all commonly used phones right from their desktop.</li>
</ul>
<p><strong>Microsoft Office Sharepoint Server (MOSS) 2007:</strong></p>
<p>Standard CAL gives:</p>
<ul type="disc">
<li class="MsoNormal"><span>Content Management--Out-of-the-box workflows initiate, track, and report common business activities such as document review and approval, issue tracking, and signature collection. </span></li>
<li class="MsoNormal"><span>Records Management--Record repository provides for the collecting, managing, and disposing of corporate records in a consistent and uniform manner based on the company's policies. </span></li>
<li class="MsoNormal"><span>Portal Site Management--Site Manager tools help personalize, deploy, and maintain portals using drag-and-drop capability. </span></li>
<li class="MsoNormal"><span>Search--Extensible and customizable search of enterprise content and people. </span></li>
<li class="MsoNormal"><span>Portals--Portal sites provide convenient starting points to connect your people to business-critical information, expertise, and applications.</span></li>
</ul>
<p class="MsoNormal" style="line-height:normal;margin:0 0 10pt;"><span><strong>On top of that, the Enterprise CAL gives:</strong></span></p>
<div></div>
<p><span></p>
<ul type="disc">
<li class="MsoNormal"><span>Report Center--Broadly shares business data through personal or shared dashboards that include Microsoft Office Excel 2007 controls and key performance indicators. </span></li>
<li class="MsoNormal"><span>Business Data Catalog--Discover more information through the ability to index business data and access it through your portal and search capabilities. </span></li>
<li class="MsoNormal"><span>Excel Services--Help secure, manage, and control spreadsheets through a Web browser. Integrate Microsoft Office Excel as a part of your business intelligence infrastructure. </span></li>
<li class="MsoNormal"><span>Forms Server--Enables the storage and organization of rich, dynamic server-based forms to gather, share, reuse, and manage information. </span></li>
</ul>
<p> </p>
<p> </p>
<p> </p>
<p></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Show Shipment Information on Sales Invoices]]></title>
<link>http://noisyvan.wordpress.com/?p=19</link>
<pubDate>Wed, 08 Oct 2008 07:08:16 +0000</pubDate>
<dc:creator>mart1n0</dc:creator>
<guid>http://noisyvan.tr.wordpress.com/2008/10/08/show-shipment-information-on-sales-invoices/</guid>
<description><![CDATA[When using combined shipments or when using the &#8220;Get Shipment Lines&#8230;&#8221; function on ]]></description>
<content:encoded><![CDATA[<p>When using combined shipments or when using the "Get Shipment Lines..." function on the invoice form, a line with shipment information is shown for all shipments linked to the invoice lines.</p>
[caption id="attachment_20" align="alignnone" width="718" caption="Sales Invoice with shipment information."]<a href="http://noisyvan.files.wordpress.com/2008/10/screenshot-108-cronus-international-ltd-microsoft-dynamics-nav.png"><img class="size-full wp-image-20" title="screenshot-108-cronus-international-ltd-microsoft-dynamics-nav" src="http://noisyvan.wordpress.com/files/2008/10/screenshot-108-cronus-international-ltd-microsoft-dynamics-nav.png" alt="Sales Invoice with shipment information." width="718" height="455" /></a>[/caption]
<p>This is very useful information for the customer and for customer service. It gives them a direct link between shipments and the invoices. Unfortunately this information line is not added when you "Ship and Invoice" an Order.</p>
<p>With the following adjustment to codeunit 80, the extra line is also added when you post "Ship and Invoice" an order.</p>
<p><strong>Codeunit 80 - Sales-Post</strong></p>
<pre>...
IF Invoice THEN BEGIN
// Insert invoice line or credit memo line
IF "Document Type" IN ["Document Type"::Order,"Document Type"::Invoice] THEN BEGIN

//insertion start
//Add shipment info if this is the first line of an invoice and there is shipping info.
recSalesInvLines.SETRANGE("Document No.",SalesInvHeader."No.");
IF recSalesInvLines.ISEMPTY AND (SalesShptHeader."No." &#60;&#62; '') AND (SalesShptHeader."Shipment Date" &#60;&#62; 0D) THEN BEGIN
SalesInvLine.INIT;
SalesInvLine."Document No." := SalesInvHeader."No.";
SalesInvLine.Description :=
STRSUBSTNO(Text92000,SalesShptHeader."No.",SalesShptHeader."Shipment Date");
SalesInvLine.INSERT;
END;
//insertion end

SalesInvLine.INIT;
SalesInvLine.TRANSFERFIELDS(TempSalesLine);
SalesInvLine."Document No." := SalesInvHeader."No.";
SalesInvLine.Quantity := TempSalesLine."Qty. to Invoice";
SalesInvLine."Quantity (Base)" := TempSalesLine."Qty. to Invoice (Base)";
...</pre>
<p>Multilanguage Value of Text92000: ENU=Shipment No. %1 of %2:;DES=Lieferung Nr. %1 vom %2:;ITS=Fornitura Nr. %1 del %2:;FRS=Livraison n° %1 du %2.</p>
<p>A text line with the Shipment No. and the Shipment Date will now be added to the invoice every time you ship and invoice an order.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[2008 CAL Conference Overview: School Librarians]]></title>
<link>http://casl.wordpress.com/?p=156</link>
<pubDate>Tue, 07 Oct 2008 19:44:35 +0000</pubDate>
<dc:creator>michellegebhart</dc:creator>
<guid>http://casl.tr.wordpress.com/2008/10/07/2008-cal-conference-overview-school-librarians/</guid>
<description><![CDATA[On behalf of Nance Nassar:
2008 CAL Schedule (PDF)
]]></description>
<content:encoded><![CDATA[<p><em>On behalf of Nance Nassar:</em></p>
<p><a href="http://casl.files.wordpress.com/2008/10/2008cal_schedule.pdf">2008 CAL Schedule</a> (PDF)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PiRate Ratings For College Football–Week of: October 7-11, 2008]]></title>
<link>http://piratings.wordpress.com/?p=169</link>
<pubDate>Tue, 07 Oct 2008 16:25:26 +0000</pubDate>
<dc:creator>piratings</dc:creator>
<guid>http://piratings.tr.wordpress.com/2008/10/07/pirate-ratings-for-college-football%e2%80%93week-of-october-7-11-2008/</guid>
<description><![CDATA[Week 7: Is Vanderbilt For Real?
 
Many of you reading this blog used to follow these ratings when I]]></description>
<content:encoded><![CDATA[<p align="center">Week 7: Is Vanderbilt For Real?</p>
<p align="center"> </p>
<p>Many of you reading this blog used to follow these ratings when I wrote for Vandymania.  Some of you have e-mailed me asking for my comments on what is going on in Vandyville.  I must admit that in the almost three years since I stopped regularly covering Vanderbilt athletics, my inside connections have for the most part dried up.  So, I can only give a layman's opinion on the current trend up in Nashville.</p>
<p> </p>
<p>Many of you know my past as a former coach of football, basketball, and baseball at the youth, high school, and collegiate levels.  When it comes to football, I am a no-nonsense believer that the team with the better defense usually wins games, and the difference is best determined in the trenches.  Think of the defense as the starting pitching staff of a Major League baseball team, and think of the defensive front seven as the aces of the staff.  The secondary is the bullpen.</p>
<p> </p>
<p>Vanderbilt has received some excellent pitching with just enough timely hitting (offense and special teams) to win 3-2 games.  The Commodore football team is much like the 1965 Los Angeles Dodgers and 1969 New York Mets five games into the football season.</p>
<p> </p>
<p>You will notice that I do not have the Commodores in my current Top 25, but they are within a few points of moving into that group.  Remember, my ratings do not rank teams based on what they have done so far; they attempt to look ahead to what they will do in their next game.</p>
<p> </p>
<p>If you look at the ratings and try to predict the future, you will see that they believe Vandy will win this week to go to 6-0, lose to Georgia, beat Duke, lose to Florida, lose to Kentucky, beat Tennessee (in overtime), and lose to Wake Forest to finish 8-4.  There is a caveat:  these ratings are only good for one week, and by Sunday, they won't be applicable for October 18.  Let's say Vanderbilt beats Mississippi State by 20 points, while Kentucky gets drilled by South Carolina.  By next week, Vanderbilt's rating could be several points higher than Kentucky's, and that game would be considered a win.  What if Mississippi State wins Saturday?  Vanderbilt could be picked to lose five of their final six games.  So, all I can really say for sure is the Commodores are a slim road favorite this week according to my ratings.  However, I believe Commodore fans will spend a few days of winter away from Nashville watching a football game for the first time since 1982.  If the team can finish 9-3, that may even be a New Year's Day game like the Outback Bowl against someone like Michigan State or Illinois.  If the team finishes 7-5, then expect to be watching them play in Memphis at the Liberty Bowl against someone like Tulsa or Marshall.</p>
<p> </p>
<p>Due to time constraints, I will no longer be able to preview the Wisconsin or Vanderbilt games like I have in previous weeks.  However, beginning next week, I will begin to slot teams into bowls using the PiRate Ratings to look forward.</p>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="445">
<tbody>
<tr>
<td colspan="5" width="445" valign="bottom">
<p align="center"><strong><span style="text-decoration:underline;">NCAA Top 25 For 7-Oct-2008</span></strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong><span style="text-decoration:underline;">Rank</span></strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong><span style="text-decoration:underline;">Team</span></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong><span style="text-decoration:underline;">PiRate</span></strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>Won</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>Lost</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Oklahoma</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>128</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>2</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Missouri</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>127</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>3</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Southern Cal</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>127</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>3</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Florida</strong><strong>  </strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>125</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Georgia</strong><strong>  </strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>123</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>6</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Texas</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>122</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>7</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Penn St.</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>120</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>6</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>8</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Ohio St</strong><strong>.</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>120</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>9</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Alabama</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>119</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>6</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>10</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Texas</strong><strong> Tech</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>118</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>11</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>L S U</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>117</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>12</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Brigham Young</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>117</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>13</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>South Florida</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>116</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>14</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>South Carolina</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>114</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>2</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>15</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Oregon</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>114</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>2</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>16</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Kansas</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>113</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>17</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Clemson</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>113</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>3</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>2</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>18</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Wisconsin</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>113</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>3</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>2</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>19</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Auburn</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>113</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>2</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>20</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Oklahoma St</strong><strong>.</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>112</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>21</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Utah</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>112</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>6</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>22</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Arizona</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>112</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>23</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Ball</strong><strong> State</strong><strong></strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>111</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>6</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>0</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>24</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>Florida St</strong><strong>.</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>111</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>4</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom">
<p align="center"><strong>25</strong></p>
</td>
<td width="189" valign="bottom">
<p align="center"><strong>T C U</strong></p>
</td>
<td width="82" valign="bottom">
<p align="center"><strong>111</strong></p>
</td>
<td width="56" valign="bottom">
<p align="center"><strong>5</strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong>1</strong></p>
</td>
</tr>
<tr>
<td width="63" valign="bottom"> </td>
<td width="189" valign="bottom"> </td>
<td width="82" valign="bottom"> </td>
<td width="56" valign="bottom">
<p align="center"><strong> </strong></p>
</td>
<td width="55" valign="bottom">
<p align="center"><strong> </strong></p>
</td>
</tr>
<tr>
<td colspan="5" width="445" valign="bottom">
<p align="center"><strong>Note: Ratings rounded to nearest whole number</strong></p>
</td>
</tr>
<tr>
<td colspan="5" width="445" valign="bottom">
<p align="center"><strong>even though I rank them to two decimal points</strong></p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<p>PiRate Ratings by Conference</p>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Atlantic</strong><strong> Coast</strong><strong> Conference</strong></p>
</td>
</tr>
<tr>
<td width="212" valign="bottom"><em>Atlantic Division</em></td>
<td width="59" valign="bottom">
<p align="center"> </p>
</td>
<td width="76" valign="bottom">
<p align="center"> </p>
</td>
<td width="70" valign="bottom">
<p align="right"> </p>
</td>
<td width="34" valign="bottom"> </td>
<td width="39" valign="bottom"> </td>
</tr>
<tr>
<td width="212" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="59" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="76" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="70" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="34" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="39" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Clemson</td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="70" valign="bottom">
<p align="right">113</p>
</td>
<td width="34" valign="bottom">
<p align="right">69</p>
</td>
<td width="39" valign="bottom">
<p align="right">44</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Florida State</td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="70" valign="bottom">
<p align="right">111</p>
</td>
<td width="34" valign="bottom">
<p align="right">69</p>
</td>
<td width="39" valign="bottom">
<p align="right">42</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Wake Forest</td>
<td width="59" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="76" valign="bottom">
<p align="center">3-1</p>
</td>
<td width="70" valign="bottom">
<p align="right">108</p>
</td>
<td width="34" valign="bottom">
<p align="right">62</p>
</td>
<td width="39" valign="bottom">
<p align="right">46</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Boston College</td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="70" valign="bottom">
<p align="right">104</p>
</td>
<td width="34" valign="bottom">
<p align="right">63</p>
</td>
<td width="39" valign="bottom">
<p align="right">41</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Maryland</td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">4-2</p>
</td>
<td width="70" valign="bottom">
<p align="right">102</p>
</td>
<td width="34" valign="bottom">
<p align="right">64</p>
</td>
<td width="39" valign="bottom">
<p align="right">38</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">North Carolina State</td>
<td width="59" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="76" valign="bottom">
<p align="center">2-4</p>
</td>
<td width="70" valign="bottom">
<p align="right">91</p>
</td>
<td width="34" valign="bottom">
<p align="right">61</p>
</td>
<td width="39" valign="bottom">
<p align="right">30</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom"> </td>
<td width="59" valign="bottom">
<p align="center"> </p>
</td>
<td width="76" valign="bottom">
<p align="center"> </p>
</td>
<td width="70" valign="bottom">
<p align="right"> </p>
</td>
<td width="34" valign="bottom"> </td>
<td width="39" valign="bottom"> </td>
</tr>
<tr>
<td width="212" valign="bottom"><em>Coastal Division</em></td>
<td width="59" valign="bottom">
<p align="center"> </p>
</td>
<td width="76" valign="bottom">
<p align="center"> </p>
</td>
<td width="70" valign="bottom">
<p align="right"> </p>
</td>
<td width="34" valign="bottom"> </td>
<td width="39" valign="bottom"> </td>
</tr>
<tr>
<td width="212" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="59" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="76" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="70" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="34" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="39" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">North Carolina</td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="70" valign="bottom">
<p align="right">109</p>
</td>
<td width="34" valign="bottom">
<p align="right">70</p>
</td>
<td width="39" valign="bottom">
<p align="right">39</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Virginia Tech</td>
<td width="59" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="76" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="70" valign="bottom">
<p align="right">108</p>
</td>
<td width="34" valign="bottom">
<p align="right">67</p>
</td>
<td width="39" valign="bottom">
<p align="right">41</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Georgia Tech</td>
<td width="59" valign="bottom">
<p align="center">2-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="70" valign="bottom">
<p align="right">105</p>
</td>
<td width="34" valign="bottom">
<p align="right">65</p>
</td>
<td width="39" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Miami</td>
<td width="59" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="76" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="70" valign="bottom">
<p align="right">100</p>
</td>
<td width="34" valign="bottom">
<p align="right">60</p>
</td>
<td width="39" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Duke</td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="70" valign="bottom">
<p align="right">96</p>
</td>
<td width="34" valign="bottom">
<p align="right">62</p>
</td>
<td width="39" valign="bottom">
<p align="right">34</p>
</td>
</tr>
<tr>
<td width="212" valign="bottom">Virginia </td>
<td width="59" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="76" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="70" valign="bottom">
<p align="right">92</p>
</td>
<td width="34" valign="bottom">
<p align="right">55</p>
</td>
<td width="39" valign="bottom">
<p align="right">37</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Big East Conference</strong></p>
</td>
</tr>
<tr>
<td width="164" valign="bottom"><em> </em></td>
<td width="69" valign="bottom">
<p align="center"> </p>
</td>
<td width="89" valign="bottom">
<p align="center"> </p>
</td>
<td width="82" valign="bottom">
<p align="right"> </p>
</td>
<td width="40" valign="bottom"> </td>
<td width="46" valign="bottom"> </td>
</tr>
<tr>
<td width="164" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="69" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="89" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="82" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="40" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="46" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">South Florida</td>
<td width="69" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="89" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="82" valign="bottom">
<p align="right">116</p>
</td>
<td width="40" valign="bottom">
<p align="right">73</p>
</td>
<td width="46" valign="bottom">
<p align="right">43</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">West Virginia</td>
<td width="69" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="89" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="82" valign="bottom">
<p align="right">110</p>
</td>
<td width="40" valign="bottom">
<p align="right">69</p>
</td>
<td width="46" valign="bottom">
<p align="right">41</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">Cincinnati</td>
<td width="69" valign="bottom">
<p align="center">0-0</p>
</td>
<td width="89" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="82" valign="bottom">
<p align="right">108</p>
</td>
<td width="40" valign="bottom">
<p align="right">64</p>
</td>
<td width="46" valign="bottom">
<p align="right">44</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">Pittsburgh</td>
<td width="69" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="89" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="82" valign="bottom">
<p align="right">107</p>
</td>
<td width="40" valign="bottom">
<p align="right">62</p>
</td>
<td width="46" valign="bottom">
<p align="right">45</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">Connecticut</td>
<td width="69" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="89" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="82" valign="bottom">
<p align="right">105</p>
</td>
<td width="40" valign="bottom">
<p align="right">64</p>
</td>
<td width="46" valign="bottom">
<p align="right">41</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">Rutgers</td>
<td width="69" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="89" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="82" valign="bottom">
<p align="right">103</p>
</td>
<td width="40" valign="bottom">
<p align="right">61</p>
</td>
<td width="46" valign="bottom">
<p align="right">42</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">Louisville</td>
<td width="69" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="89" valign="bottom">
<p align="center">2-2</p>
</td>
<td width="82" valign="bottom">
<p align="right">101</p>
</td>
<td width="40" valign="bottom">
<p align="right">62</p>
</td>
<td width="46" valign="bottom">
<p align="right">39</p>
</td>
</tr>
<tr>
<td width="164" valign="bottom">Syracuse</td>
<td width="69" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="89" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="82" valign="bottom">
<p align="right">82</p>
</td>
<td width="40" valign="bottom">
<p align="right">53</p>
</td>
<td width="46" valign="bottom">
<p align="right">29</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Big Ten</strong></p>
</td>
</tr>
<tr>
<td width="176" valign="bottom"> </td>
<td width="66" valign="bottom"> </td>
<td width="86" valign="bottom"> </td>
<td width="79" valign="bottom"> </td>
<td width="39" valign="bottom"> </td>
<td width="44" valign="bottom"> </td>
</tr>
<tr>
<td width="176" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="66" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="86" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="79" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="39" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="44" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Penn State</td>
<td width="66" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">6-0</p>
</td>
<td width="79" valign="bottom">
<p align="right">120</p>
</td>
<td width="39" valign="bottom">
<p align="right">73</p>
</td>
<td width="44" valign="bottom">
<p align="right">47</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Ohio State</td>
<td width="66" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="79" valign="bottom">
<p align="right">120</p>
</td>
<td width="39" valign="bottom">
<p align="right">68</p>
</td>
<td width="44" valign="bottom">
<p align="right">52</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Wisconsin</td>
<td width="66" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="79" valign="bottom">
<p align="right">113</p>
</td>
<td width="39" valign="bottom">
<p align="right">71</p>
</td>
<td width="44" valign="bottom">
<p align="right">42</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Illinois</td>
<td width="66" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="79" valign="bottom">
<p align="right">109</p>
</td>
<td width="39" valign="bottom">
<p align="right">70</p>
</td>
<td width="44" valign="bottom">
<p align="right">39</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Michigan State</td>
<td width="66" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="79" valign="bottom">
<p align="right">108</p>
</td>
<td width="39" valign="bottom">
<p align="right">65</p>
</td>
<td width="44" valign="bottom">
<p align="right">43</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Iowa</td>
<td width="66" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">102</p>
</td>
<td width="39" valign="bottom">
<p align="right">64</p>
</td>
<td width="44" valign="bottom">
<p align="right">38</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Minnesota</td>
<td width="66" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="79" valign="bottom">
<p align="right">101</p>
</td>
<td width="39" valign="bottom">
<p align="right">66</p>
</td>
<td width="44" valign="bottom">
<p align="right">35</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Michigan</td>
<td width="66" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">100</p>
</td>
<td width="39" valign="bottom">
<p align="right">62</p>
</td>
<td width="44" valign="bottom">
<p align="right">38</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Purdue</td>
<td width="66" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">100</p>
</td>
<td width="39" valign="bottom">
<p align="right">65</p>
</td>
<td width="44" valign="bottom">
<p align="right">35</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Northwestern</td>
<td width="66" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="79" valign="bottom">
<p align="right">99</p>
</td>
<td width="39" valign="bottom">
<p align="right">63</p>
</td>
<td width="44" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="176" valign="bottom">Indiana</td>
<td width="66" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">94</p>
</td>
<td width="39" valign="bottom">
<p align="right">61</p>
</td>
<td width="44" valign="bottom">
<p align="right">33</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Big 12</strong></p>
</td>
</tr>
<tr>
<td width="185" valign="bottom"><em>North Division</em></td>
<td width="64" valign="bottom"> </td>
<td width="84" valign="bottom"> </td>
<td width="77" valign="bottom"> </td>
<td width="38" valign="bottom"> </td>
<td width="43" valign="bottom"> </td>
</tr>
<tr>
<td width="185" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="64" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="84" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="77" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="38" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="43" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Missouri</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="84" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="77" valign="bottom">
<p align="right">127</p>
</td>
<td width="38" valign="bottom">
<p align="right">78</p>
</td>
<td width="43" valign="bottom">
<p align="right">49</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Kansas</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="84" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="77" valign="bottom">
<p align="right">113</p>
</td>
<td width="38" valign="bottom">
<p align="right">66</p>
</td>
<td width="43" valign="bottom">
<p align="right">47</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Colorado</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="84" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="77" valign="bottom">
<p align="right">100</p>
</td>
<td width="38" valign="bottom">
<p align="right">63</p>
</td>
<td width="43" valign="bottom">
<p align="right">37</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Nebraska</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="84" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="77" valign="bottom">
<p align="right">97</p>
</td>
<td width="38" valign="bottom">
<p align="right">61</p>
</td>
<td width="43" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Kansas State</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="84" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="77" valign="bottom">
<p align="right">95</p>
</td>
<td width="38" valign="bottom">
<p align="right">67</p>
</td>
<td width="43" valign="bottom">
<p align="right">28</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Iowa State</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="84" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="77" valign="bottom">
<p align="right">95</p>
</td>
<td width="38" valign="bottom">
<p align="right">59</p>
</td>
<td width="43" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom"><em>South Division</em></td>
<td width="64" valign="bottom"> </td>
<td width="84" valign="bottom"> </td>
<td width="77" valign="bottom"> </td>
<td width="38" valign="bottom"> </td>
<td width="43" valign="bottom"> </td>
</tr>
<tr>
<td width="185" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="64" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="84" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="77" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="38" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="43" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Oklahoma</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="84" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="77" valign="bottom">
<p align="right">128</p>
</td>
<td width="38" valign="bottom">
<p align="right">83</p>
</td>
<td width="43" valign="bottom">
<p align="right">45</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Texas</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="84" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="77" valign="bottom">
<p align="right">122</p>
</td>
<td width="38" valign="bottom">
<p align="right">76</p>
</td>
<td width="43" valign="bottom">
<p align="right">46</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Texas Tech</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="84" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="77" valign="bottom">
<p align="right">118</p>
</td>
<td width="38" valign="bottom">
<p align="right">78</p>
</td>
<td width="43" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Oklahoma State</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="84" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="77" valign="bottom">
<p align="right">112</p>
</td>
<td width="38" valign="bottom">
<p align="right">69</p>
</td>
<td width="43" valign="bottom">
<p align="right">43</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Baylor</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="84" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="77" valign="bottom">
<p align="right">94</p>
</td>
<td width="38" valign="bottom">
<p align="right">61</p>
</td>
<td width="43" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="185" valign="bottom">Texas A&#38;M</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="84" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="77" valign="bottom">
<p align="right">91</p>
</td>
<td width="38" valign="bottom">
<p align="right">55</p>
</td>
<td width="43" valign="bottom">
<p align="right">36</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Conference USA</strong></p>
</td>
</tr>
<tr>
<td width="177" valign="bottom"><em>East Division</em></td>
<td width="66" valign="bottom"> </td>
<td width="86" valign="bottom"> </td>
<td width="79" valign="bottom"> </td>
<td width="39" valign="bottom"> </td>
<td width="44" valign="bottom"> </td>
</tr>
<tr>
<td width="177" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="66" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="86" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="79" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="39" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="44" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">East Carolina</td>
<td width="66" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="79" valign="bottom">
<p align="right">100</p>
</td>
<td width="39" valign="bottom">
<p align="right">64</p>
</td>
<td width="44" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Central Florida</td>
<td width="66" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">92</p>
</td>
<td width="39" valign="bottom">
<p align="right">52</p>
</td>
<td width="44" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Marshall</td>
<td width="66" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">91</p>
</td>
<td width="39" valign="bottom">
<p align="right">56</p>
</td>
<td width="44" valign="bottom">
<p align="right">35</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Memphis</td>
<td width="66" valign="bottom">
<p align="center">1-2</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">91</p>
</td>
<td width="39" valign="bottom">
<p align="right">61</p>
</td>
<td width="44" valign="bottom">
<p align="right">30</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Southern Miss.</td>
<td width="66" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">89</p>
</td>
<td width="39" valign="bottom">
<p align="right">60</p>
</td>
<td width="44" valign="bottom">
<p align="right">29</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">U A B</td>
<td width="66" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="86" valign="bottom">
<p align="center">1-5</p>
</td>
<td width="79" valign="bottom">
<p align="right">85</p>
</td>
<td width="39" valign="bottom">
<p align="right">52</p>
</td>
<td width="44" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom"><em>West Division</em></td>
<td width="66" valign="bottom"> </td>
<td width="86" valign="bottom"> </td>
<td width="79" valign="bottom"> </td>
<td width="39" valign="bottom"> </td>
<td width="44" valign="bottom"> </td>
</tr>
<tr>
<td width="177" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="66" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="86" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="79" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="39" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="44" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Tulsa</td>
<td width="66" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="79" valign="bottom">
<p align="right">106</p>
</td>
<td width="39" valign="bottom">
<p align="right">70</p>
</td>
<td width="44" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Houston</td>
<td width="66" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">94</p>
</td>
<td width="39" valign="bottom">
<p align="right">60</p>
</td>
<td width="44" valign="bottom">
<p align="right">34</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Tulane</td>
<td width="66" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">87</p>
</td>
<td width="39" valign="bottom">
<p align="right">58</p>
</td>
<td width="44" valign="bottom">
<p align="right">29</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Rice</td>
<td width="66" valign="bottom">
<p align="center">2-1</p>
</td>
<td width="86" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">87</p>
</td>
<td width="39" valign="bottom">
<p align="right">60</p>
</td>
<td width="44" valign="bottom">
<p align="right">27</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">U T E P</td>
<td width="66" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="86" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="79" valign="bottom">
<p align="right">86</p>
</td>
<td width="39" valign="bottom">
<p align="right">54</p>
</td>
<td width="44" valign="bottom">
<p align="right">32</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">S M U</td>
<td width="66" valign="bottom">
<p align="center">0-3</p>
</td>
<td width="86" valign="bottom">
<p align="center">1-5</p>
</td>
<td width="79" valign="bottom">
<p align="right">79</p>
</td>
<td width="39" valign="bottom">
<p align="right">56</p>
</td>
<td width="44" valign="bottom">
<p align="right">23</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Independents</strong></p>
</td>
</tr>
<tr>
<td width="177" valign="bottom"> </td>
<td width="8" valign="bottom"> </td>
<td width="106" valign="bottom"> </td>
<td width="97" valign="bottom"> </td>
<td width="47" valign="bottom"> </td>
<td width="55" valign="bottom"> </td>
</tr>
<tr>
<td width="177" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="8" valign="bottom">
<p align="center"><span style="text-decoration:underline;"> </span></p>
</td>
<td width="106" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="97" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="47" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="55" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Notre Dame</td>
<td width="8" valign="bottom"> </td>
<td width="106" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="97" valign="bottom">
<p align="right">103</p>
</td>
<td width="47" valign="bottom">
<p align="right">63</p>
</td>
<td width="55" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Navy</td>
<td width="8" valign="bottom"> </td>
<td width="106" valign="bottom">
<p align="center">4-2</p>
</td>
<td width="97" valign="bottom">
<p align="right">98</p>
</td>
<td width="47" valign="bottom">
<p align="right">59</p>
</td>
<td width="55" valign="bottom">
<p align="right">39</p>
</td>
</tr>
<tr>
<td width="177" valign="bottom">Army</td>
<td width="8" valign="bottom"> </td>
<td width="106" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="97" valign="bottom">
<p align="right">80</p>
</td>
<td width="47" valign="bottom">
<p align="right">50</p>
</td>
<td width="55" valign="bottom">
<p align="right">30</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Mid American Conference</strong></p>
</td>
</tr>
<tr>
<td width="198" valign="bottom"><em>East Division</em></td>
<td width="62" valign="bottom"> </td>
<td width="80" valign="bottom"> </td>
<td width="74" valign="bottom"> </td>
<td width="36" valign="bottom"> </td>
<td width="41" valign="bottom"> </td>
</tr>
<tr>
<td width="198" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="62" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="80" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="74" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="36" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="41" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Buffalo</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">98</p>
</td>
<td width="36" valign="bottom">
<p align="right">64</p>
</td>
<td width="41" valign="bottom">
<p align="right">34</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Temple</td>
<td width="62" valign="bottom">
<p align="center">1-2</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-4</p>
</td>
<td width="74" valign="bottom">
<p align="right">97</p>
</td>
<td width="36" valign="bottom">
<p align="right">57</p>
</td>
<td width="41" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Bowling Green</td>
<td width="62" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">96</p>
</td>
<td width="36" valign="bottom">
<p align="right">65</p>
</td>
<td width="41" valign="bottom">
<p align="right">31</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Akron</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">91</p>
</td>
<td width="36" valign="bottom">
<p align="right">60</p>
</td>
<td width="41" valign="bottom">
<p align="right">31</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Ohio U</td>
<td width="62" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="80" valign="bottom">
<p align="center">1-5</p>
</td>
<td width="74" valign="bottom">
<p align="right">90</p>
</td>
<td width="36" valign="bottom">
<p align="right">52</p>
</td>
<td width="41" valign="bottom">
<p align="right">38</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Miami (O)</td>
<td width="62" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="74" valign="bottom">
<p align="right">89</p>
</td>
<td width="36" valign="bottom">
<p align="right">57</p>
</td>
<td width="41" valign="bottom">
<p align="right">32</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Kent State</td>
<td width="62" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="80" valign="bottom">
<p align="center">1-5</p>
</td>
<td width="74" valign="bottom">
<p align="right">86</p>
</td>
<td width="36" valign="bottom">
<p align="right">56</p>
</td>
<td width="41" valign="bottom">
<p align="right">30</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom"> </td>
<td width="62" valign="bottom"> </td>
<td width="80" valign="bottom"> </td>
<td width="74" valign="bottom"> </td>
<td width="36" valign="bottom"> </td>
<td width="41" valign="bottom"> </td>
</tr>
<tr>
<td width="198" valign="bottom"><em>West Division</em></td>
<td width="62" valign="bottom"> </td>
<td width="80" valign="bottom"> </td>
<td width="74" valign="bottom"> </td>
<td width="36" valign="bottom"> </td>
<td width="41" valign="bottom"> </td>
</tr>
<tr>
<td width="198" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="62" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="80" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="74" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="36" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="41" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Ball State</td>
<td width="62" valign="bottom">
<p align="center">3-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">6-0</p>
</td>
<td width="74" valign="bottom">
<p align="right">111</p>
</td>
<td width="36" valign="bottom">
<p align="right">71</p>
</td>
<td width="41" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Western Michigan</td>
<td width="62" valign="bottom">
<p align="center">3-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="74" valign="bottom">
<p align="right">100</p>
</td>
<td width="36" valign="bottom">
<p align="right">64</p>
</td>
<td width="41" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Northern Illinois</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">99</p>
</td>
<td width="36" valign="bottom">
<p align="right">61</p>
</td>
<td width="41" valign="bottom">
<p align="right">38</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Central Michigan</td>
<td width="62" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">98</p>
</td>
<td width="36" valign="bottom">
<p align="right">66</p>
</td>
<td width="41" valign="bottom">
<p align="right">32</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Toledo</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="74" valign="bottom">
<p align="right">87</p>
</td>
<td width="36" valign="bottom">
<p align="right">57</p>
</td>
<td width="41" valign="bottom">
<p align="right">30</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Eastern Michigan</td>
<td width="62" valign="bottom">
<p align="center">1-2</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-4</p>
</td>
<td width="74" valign="bottom">
<p align="right">84</p>
</td>
<td width="36" valign="bottom">
<p align="right">54</p>
</td>
<td width="41" valign="bottom">
<p align="right">30</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Mountain West Conference</strong></p>
</td>
</tr>
<tr>
<td width="187" valign="bottom"> </td>
<td width="64" valign="bottom"> </td>
<td width="83" valign="bottom"> </td>
<td width="76" valign="bottom"> </td>
<td width="37" valign="bottom"> </td>
<td width="43" valign="bottom"> </td>
</tr>
<tr>
<td width="187" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="64" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="83" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="76" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="37" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="43" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">Brigham Young</td>
<td width="64" valign="bottom">
<p align="center">0-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="76" valign="bottom">
<p align="right">117</p>
</td>
<td width="37" valign="bottom">
<p align="right">73</p>
</td>
<td width="43" valign="bottom">
<p align="right">44</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">Utah</td>
<td width="64" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">6-0</p>
</td>
<td width="76" valign="bottom">
<p align="right">112</p>
</td>
<td width="37" valign="bottom">
<p align="right">68</p>
</td>
<td width="43" valign="bottom">
<p align="right">44</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">T C U</td>
<td width="64" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">5-1</p>
</td>
<td width="76" valign="bottom">
<p align="right">111</p>
</td>
<td width="37" valign="bottom">
<p align="right">65</p>
</td>
<td width="43" valign="bottom">
<p align="right">46</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">Air Force</td>
<td width="64" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="83" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="76" valign="bottom">
<p align="right">92</p>
</td>
<td width="37" valign="bottom">
<p align="right">55</p>
</td>
<td width="43" valign="bottom">
<p align="right">37</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">New Mexico</td>
<td width="64" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="83" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="76" valign="bottom">
<p align="right">92</p>
</td>
<td width="37" valign="bottom">
<p align="right">58</p>
</td>
<td width="43" valign="bottom">
<p align="right">34</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">Colorado State</td>
<td width="64" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="76" valign="bottom">
<p align="right">88</p>
</td>
<td width="37" valign="bottom">
<p align="right">57</p>
</td>
<td width="43" valign="bottom">
<p align="right">31</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">UNLV</td>
<td width="64" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="76" valign="bottom">
<p align="right">86</p>
</td>
<td width="37" valign="bottom">
<p align="right">57</p>
</td>
<td width="43" valign="bottom">
<p align="right">29</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">Wyoming</td>
<td width="64" valign="bottom">
<p align="center">0-3</p>
</td>
<td width="83" valign="bottom">
<p align="center">2-4</p>
</td>
<td width="76" valign="bottom">
<p align="right">83</p>
</td>
<td width="37" valign="bottom">
<p align="right">51</p>
</td>
<td width="43" valign="bottom">
<p align="right">32</p>
</td>
</tr>
<tr>
<td width="187" valign="bottom">San Diego State</td>
<td width="64" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="83" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="76" valign="bottom">
<p align="right">83</p>
</td>
<td width="37" valign="bottom">
<p align="right">52</p>
</td>
<td width="43" valign="bottom">
<p align="right">31</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Pac-10 Conference</strong></p>
</td>
</tr>
<tr>
<td width="196" valign="bottom"> </td>
<td width="62" valign="bottom"> </td>
<td width="81" valign="bottom"> </td>
<td width="74" valign="bottom"> </td>
<td width="36" valign="bottom"> </td>
<td width="42" valign="bottom"> </td>
</tr>
<tr>
<td width="196" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="62" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="81" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="74" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="36" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="42" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Southern Cal</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="81" valign="bottom">
<p align="center">3-1</p>
</td>
<td width="74" valign="bottom">
<p align="right">127</p>
</td>
<td width="36" valign="bottom">
<p align="right">72</p>
</td>
<td width="42" valign="bottom">
<p align="right">55</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Oregon</td>
<td width="62" valign="bottom">
<p align="center">2-1</p>
</td>
<td width="81" valign="bottom">
<p align="center">4-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">114</p>
</td>
<td width="36" valign="bottom">
<p align="right">70</p>
</td>
<td width="42" valign="bottom">
<p align="right">44</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Arizona</td>
<td width="62" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="81" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="74" valign="bottom">
<p align="right">112</p>
</td>
<td width="36" valign="bottom">
<p align="right">73</p>
</td>
<td width="42" valign="bottom">
<p align="right">39</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">California</td>
<td width="62" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="81" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="74" valign="bottom">
<p align="right">111</p>
</td>
<td width="36" valign="bottom">
<p align="right">69</p>
</td>
<td width="42" valign="bottom">
<p align="right">42</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Oregon State</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="81" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">110</p>
</td>
<td width="36" valign="bottom">
<p align="right">72</p>
</td>
<td width="42" valign="bottom">
<p align="right">38</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Arizona State</td>
<td width="62" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="81" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">109</p>
</td>
<td width="36" valign="bottom">
<p align="right">66</p>
</td>
<td width="42" valign="bottom">
<p align="right">43</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Stanford</td>
<td width="62" valign="bottom">
<p align="center">2-1</p>
</td>
<td width="81" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">102</p>
</td>
<td width="36" valign="bottom">
<p align="right">62</p>
</td>
<td width="42" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">U C L A</td>
<td width="62" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="81" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">101</p>
</td>
<td width="36" valign="bottom">
<p align="right">58</p>
</td>
<td width="42" valign="bottom">
<p align="right">43</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Washington</td>
<td width="62" valign="bottom">
<p align="center">0-3</p>
</td>
<td width="81" valign="bottom">
<p align="center">0-5</p>
</td>
<td width="74" valign="bottom">
<p align="right">93</p>
</td>
<td width="36" valign="bottom">
<p align="right">60</p>
</td>
<td width="42" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="196" valign="bottom">Washington State</td>
<td width="62" valign="bottom">
<p align="center">0-3</p>
</td>
<td width="81" valign="bottom">
<p align="center">1-5</p>
</td>
<td width="74" valign="bottom">
<p align="right">83</p>
</td>
<td width="36" valign="bottom">
<p align="right">53</p>
</td>
<td width="42" valign="bottom">
<p align="right">30</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Southeastern Conference</strong></p>
</td>
</tr>
<tr>
<td width="189" valign="bottom"><em>East Division</em></td>
<td width="63" valign="bottom"> </td>
<td width="83" valign="bottom"> </td>
<td width="76" valign="bottom"> </td>
<td width="37" valign="bottom"> </td>
<td width="43" valign="bottom"> </td>
</tr>
<tr>
<td width="189" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="63" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="83" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="76" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="37" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="43" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Florida </td>
<td width="63" valign="bottom">
<p align="center">2-1</p>
</td>
<td width="83" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="76" valign="bottom">
<p align="right">125</p>
</td>
<td width="37" valign="bottom">
<p align="right">77</p>
</td>
<td width="43" valign="bottom">
<p align="right">48</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Georgia </td>
<td width="63" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="83" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="76" valign="bottom">
<p align="right">123</p>
</td>
<td width="37" valign="bottom">
<p align="right">74</p>
</td>
<td width="43" valign="bottom">
<p align="right">49</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">South Carolina</td>
<td width="63" valign="bottom">
<p align="center">1-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">4-2</p>
</td>
<td width="76" valign="bottom">
<p align="right">114</p>
</td>
<td width="37" valign="bottom">
<p align="right">67</p>
</td>
<td width="43" valign="bottom">
<p align="right">47</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Kentucky</td>
<td width="63" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="83" valign="bottom">
<p align="center">4-1</p>
</td>
<td width="76" valign="bottom">
<p align="right">111</p>
</td>
<td width="37" valign="bottom">
<p align="right">63</p>
</td>
<td width="43" valign="bottom">
<p align="right">48</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Tennessee</td>
<td width="63" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="76" valign="bottom">
<p align="right">111</p>
</td>
<td width="37" valign="bottom">
<p align="right">67</p>
</td>
<td width="43" valign="bottom">
<p align="right">44</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Vanderbilt</td>
<td width="63" valign="bottom">
<p align="center">3-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">5-0</p>
</td>
<td width="76" valign="bottom">
<p align="right">108</p>
</td>
<td width="37" valign="bottom">
<p align="right">63</p>
</td>
<td width="43" valign="bottom">
<p align="right">45</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom"><em>West Division</em></td>
<td width="63" valign="bottom"> </td>
<td width="83" valign="bottom"> </td>
<td width="76" valign="bottom"> </td>
<td width="37" valign="bottom"> </td>
<td width="43" valign="bottom"> </td>
</tr>
<tr>
<td width="189" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="63" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="83" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="76" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="37" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="43" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Alabama</td>
<td width="63" valign="bottom">
<p align="center">3-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">6-0</p>
</td>
<td width="76" valign="bottom">
<p align="right">119</p>
</td>
<td width="37" valign="bottom">
<p align="right">68</p>
</td>
<td width="43" valign="bottom">
<p align="right">51</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">L S U</td>
<td width="63" valign="bottom">
<p align="center">2-0</p>
</td>
<td width="83" valign="bottom">
<p align="center">4-0</p>
</td>
<td width="76" valign="bottom">
<p align="right">117</p>
</td>
<td width="37" valign="bottom">
<p align="right">72</p>
</td>
<td width="43" valign="bottom">
<p align="right">45</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Auburn</td>
<td width="63" valign="bottom">
<p align="center">2-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">4-2</p>
</td>
<td width="76" valign="bottom">
<p align="right">113</p>
</td>
<td width="37" valign="bottom">
<p align="right">63</p>
</td>
<td width="43" valign="bottom">
<p align="right">50</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Ole Miss</td>
<td width="63" valign="bottom">
<p align="center">1-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">3-3</p>
</td>
<td width="76" valign="bottom">
<p align="right">108</p>
</td>
<td width="37" valign="bottom">
<p align="right">67</p>
</td>
<td width="43" valign="bottom">
<p align="right">41</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Mississippi State</td>
<td width="63" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="76" valign="bottom">
<p align="right">104</p>
</td>
<td width="37" valign="bottom">
<p align="right">59</p>
</td>
<td width="43" valign="bottom">
<p align="right">45</p>
</td>
</tr>
<tr>
<td width="189" valign="bottom">Arkansas</td>
<td width="63" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="83" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="76" valign="bottom">
<p align="right">93</p>
</td>
<td width="37" valign="bottom">
<p align="right">65</p>
</td>
<td width="43" valign="bottom">
<p align="right">28</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Sunbelt</strong><strong> Conference</strong></p>
</td>
</tr>
<tr>
<td width="209" valign="bottom"> </td>
<td width="59" valign="bottom"> </td>
<td width="77" valign="bottom"> </td>
<td width="71" valign="bottom"> </td>
<td width="35" valign="bottom"> </td>
<td width="40" valign="bottom"> </td>
</tr>
<tr>
<td width="209" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="59" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="77" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="71" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="35" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="40" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Troy</td>
<td width="59" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="77" valign="bottom">
<p align="center">2-2</p>
</td>
<td width="71" valign="bottom">
<p align="right">98</p>
</td>
<td width="35" valign="bottom">
<p align="right">63</p>
</td>
<td width="40" valign="bottom">
<p align="right">35</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Florida Atlantic</td>
<td width="59" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="77" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="71" valign="bottom">
<p align="right">93</p>
</td>
<td width="35" valign="bottom">
<p align="right">62</p>
</td>
<td width="40" valign="bottom">
<p align="right">31</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Louisiana-Lafayette</td>
<td width="59" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="77" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="71" valign="bottom">
<p align="right">93</p>
</td>
<td width="35" valign="bottom">
<p align="right">65</p>
</td>
<td width="40" valign="bottom">
<p align="right">28</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Middle Tennessee</td>
<td width="59" valign="bottom">
<p align="center">1-2</p>
</td>
<td width="77" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="71" valign="bottom">
<p align="right">88</p>
</td>
<td width="35" valign="bottom">
<p align="right">55</p>
</td>
<td width="40" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Florida International</td>
<td width="59" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="77" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="71" valign="bottom">
<p align="right">88</p>
</td>
<td width="35" valign="bottom">
<p align="right">56</p>
</td>
<td width="40" valign="bottom">
<p align="right">32</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Arkansas State</td>
<td width="59" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="77" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="71" valign="bottom">
<p align="right">87</p>
</td>
<td width="35" valign="bottom">
<p align="right">57</p>
</td>
<td width="40" valign="bottom">
<p align="right">30</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">Louisiana-Monroe</td>
<td width="59" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="77" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="71" valign="bottom">
<p align="right">87</p>
</td>
<td width="35" valign="bottom">
<p align="right">54</p>
</td>
<td width="40" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">* Western Kentucky</td>
<td width="59" valign="bottom">
<p align="center">0-0</p>
</td>
<td width="77" valign="bottom">
<p align="center">2-4</p>
</td>
<td width="71" valign="bottom">
<p align="right">85</p>
</td>
<td width="35" valign="bottom">
<p align="right">52</p>
</td>
<td width="40" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom">North Texas</td>
<td width="59" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="77" valign="bottom">
<p align="center">0-5</p>
</td>
<td width="71" valign="bottom">
<p align="right">69</p>
</td>
<td width="35" valign="bottom">
<p align="right">51</p>
</td>
<td width="40" valign="bottom">
<p align="right">18</p>
</td>
</tr>
<tr>
<td width="209" valign="bottom"> </td>
<td width="59" valign="bottom"> </td>
<td width="77" valign="bottom"> </td>
<td width="71" valign="bottom"> </td>
<td width="35" valign="bottom"> </td>
<td width="40" valign="bottom"> </td>
</tr>
<tr>
<td colspan="3" width="346" valign="bottom">* Western Kentucky will become eligible in 2009</td>
<td width="71" valign="bottom"> </td>
<td width="35" valign="bottom"> </td>
<td width="40" valign="bottom"> </td>
</tr>
<tr>
<td colspan="4" width="416" valign="bottom">Their games will not count in the SBC Standings in 2008</td>
<td width="35" valign="bottom"> </td>
<td width="40" valign="bottom"> </td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="491">
<tbody>
<tr>
<td colspan="6" width="491" valign="bottom">
<p align="center"><strong>Western Athletic Conference</strong></p>
</td>
</tr>
<tr>
<td width="198" valign="bottom"> </td>
<td width="61" valign="bottom"> </td>
<td width="80" valign="bottom"> </td>
<td width="74" valign="bottom"> </td>
<td width="36" valign="bottom"> </td>
<td width="41" valign="bottom"> </td>
</tr>
<tr>
<td width="198" valign="bottom"><span style="text-decoration:underline;">Team</span></td>
<td width="61" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Conf.</span></p>
</td>
<td width="80" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Overall</span></p>
</td>
<td width="74" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Rating</span></p>
</td>
<td width="36" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Off</span></p>
</td>
<td width="41" valign="bottom">
<p align="right"><span style="text-decoration:underline;">Def</span></p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Boise State</td>
<td width="61" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">4-0</p>
</td>
<td width="74" valign="bottom">
<p align="right">110</p>
</td>
<td width="36" valign="bottom">
<p align="right">70</p>
</td>
<td width="41" valign="bottom">
<p align="right">40</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Fresno State</td>
<td width="61" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">105</p>
</td>
<td width="36" valign="bottom">
<p align="right">68</p>
</td>
<td width="41" valign="bottom">
<p align="right">37</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Nevada</td>
<td width="61" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">99</p>
</td>
<td width="36" valign="bottom">
<p align="right">68</p>
</td>
<td width="41" valign="bottom">
<p align="right">31</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">San Jose State</td>
<td width="61" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">3-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">92</p>
</td>
<td width="36" valign="bottom">
<p align="right">56</p>
</td>
<td width="41" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Hawaii</td>
<td width="61" valign="bottom">
<p align="center">1-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-3</p>
</td>
<td width="74" valign="bottom">
<p align="right">90</p>
</td>
<td width="36" valign="bottom">
<p align="right">54</p>
</td>
<td width="41" valign="bottom">
<p align="right">36</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Louisiana Tech</td>
<td width="61" valign="bottom">
<p align="center">0-1</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">89</p>
</td>
<td width="36" valign="bottom">
<p align="right">55</p>
</td>
<td width="41" valign="bottom">
<p align="right">34</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Utah State</td>
<td width="61" valign="bottom">
<p align="center">1-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">1-4</p>
</td>
<td width="74" valign="bottom">
<p align="right">84</p>
</td>
<td width="36" valign="bottom">
<p align="right">51</p>
</td>
<td width="41" valign="bottom">
<p align="right">33</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">New Mexico State</td>
<td width="61" valign="bottom">
<p align="center">0-0</p>
</td>
<td width="80" valign="bottom">
<p align="center">2-2</p>
</td>
<td width="74" valign="bottom">
<p align="right">83</p>
</td>
<td width="36" valign="bottom">
<p align="right">52</p>
</td>
<td width="41" valign="bottom">
<p align="right">31</p>
</td>
</tr>
<tr>
<td width="198" valign="bottom">Idaho</td>
<td width="61" valign="bottom">
<p align="center">0-2</p>
</td>
<td width="80" valign="bottom">
<p align="center">1-5</p>
</td>
<td width="74" valign="bottom">
<p align="right">70</p>
</td>
<td width="36" valign="bottom">
<p align="right">54</p>
</td>
<td width="41" valign="bottom">
<p align="right">16</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="553">
<tbody>
<tr>
<td colspan="4" width="553" valign="bottom">
<p align="center"><strong>This Week's Games--PiRate Ratings</strong></p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Home Team in CAPS</td>
<td width="181" valign="bottom">(N) Denotes Neutral Site</td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"> </td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Tuesday, October 7</td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"><span style="text-decoration:underline;">Favorite</span></td>
<td width="181" valign="bottom"><span style="text-decoration:underline;">Underdog</span></td>
<td width="99" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Pred. Spread</span></p>
</td>
<td width="106" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Approx. Score</span></p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Troy</td>
<td width="181" valign="bottom">FLORIDA ATLANTIC</td>
<td width="99" valign="bottom">
<p align="center">2</p>
</td>
<td width="106" valign="bottom">
<p align="center">30-28</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"> </td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Thursday, October 9</td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"><span style="text-decoration:underline;">Favorite</span></td>
<td width="181" valign="bottom"><span style="text-decoration:underline;">Underdog</span></td>
<td width="99" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Pred. Spread</span></p>
</td>
<td width="106" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Approx. Score</span></p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Clemson</td>
<td width="181" valign="bottom">WAKE FOREST</td>
<td width="99" valign="bottom">
<p align="center">2</p>
</td>
<td width="106" valign="bottom">
<p align="center">23-21</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">HOUSTON</td>
<td width="181" valign="bottom">U a b</td>
<td width="99" valign="bottom">
<p align="center">12</p>
</td>
<td width="106" valign="bottom">
<p align="center">28-16</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"> </td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Friday, October 10</td>
<td width="181" valign="bottom"><span style="text-decoration:underline;"> </span></td>
<td width="99" valign="bottom">
<p align="center"><span style="text-decoration:underline;"> </span></p>
</td>
<td width="106" valign="bottom">
<p align="center"><span style="text-decoration:underline;"> </span></p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"><span style="text-decoration:underline;">Favorite</span></td>
<td width="181" valign="bottom"><span style="text-decoration:underline;">Underdog</span></td>
<td width="99" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Pred. Spread</span></p>
</td>
<td width="106" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Approx. Score</span></p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Louisville</td>
<td width="181" valign="bottom">MEMPHIS</td>
<td width="99" valign="bottom">
<p align="center">7</p>
</td>
<td width="106" valign="bottom">
<p align="center">31-24</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"> </td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Saturday, October 11</td>
<td width="181" valign="bottom"> </td>
<td width="99" valign="bottom">
<p align="center"> </p>
</td>
<td width="106" valign="bottom">
<p align="center"> </p>
</td>
</tr>
<tr>
<td width="167" valign="bottom"><span style="text-decoration:underline;">Favorite</span></td>
<td width="181" valign="bottom"><span style="text-decoration:underline;">Underdog</span></td>
<td width="99" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Pred. Spread</span></p>
</td>
<td width="106" valign="bottom">
<p align="center"><span style="text-decoration:underline;">Approx. Score</span></p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Oklahoma     (Dallas)</td>
<td width="181" valign="bottom">Texas</td>
<td width="99" valign="bottom">
<p align="center">6</p>
</td>
<td width="106" valign="bottom">
<p align="center">37-31</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">Iowa</td>
<td width="181" valign="bottom">INDIANA</td>
<td width="99" valign="bottom">
<p align="center">5</p>
</td>
<td width="106" valign="bottom">
<p align="center">28-23</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">MICHIGAN</td>
<td width="181" valign="bottom">Toledo</td>
<td width="99" valign="bottom">
<p align="center">16</p>
</td>
<td width="106" valign="bottom">
<p align="center">33-17</p>
</td>
</tr>
<tr>
<td width="167" valign="bottom">East Carolina</td>
<td width="181" valign="bottom">VIRGINIA</td>
<td width="99" valign="bottom">
<p align="center">5</p>
</td>
<td width="106" valign="bottom">
<p align="center">26-21</p>
</td>
</tr>
<tr>
<td width="167" valign