//  Copyright (c) 2001 by Sideline Software Inc.  All Rights Reserved.
//  Do not redistribute this script without the express written
//  consent of Sideline Software Inc.
startweek = 1
finalweek = 16
wWeek = ''
wSeason = '01'
wExt = '.html'
wUnd = '_'
wText = ''
wText += '<div class="weeklinks">'
wText += 'Week<br>'

for (var i = startweek; i <= finalweek; i++) {
  wWeek = ''
  if (i < 10) { wWeek += '0' } else { wWeek += '' }
  if (i == currentweek) {
    if (navigator.appName == "Netscape") {
      wText += '<font size=+1>' + i + '</font><br>' }
    if (navigator.appName == "Microsoft Internet Explorer") {
      wText += '<strong><big>' + i + '</big></strong><br>' }
  } else {
      wText += '<a href="' + wSeason + wWeek + i + wUnd + report + wExt + '">' + i + '</a><br>'
  }
}
wText += '</div>'
document.write(wText)
