sportsArray = new Array()
sportsArray[0] = new Array("Back to Sports in Seattle","sports.htm","","sports_mariners.gif")
sportsArray[1] = new Array("Seattle Mariners","mariners.htm","The Seattle Mariners play Major League Baseball at Safeco Field.","mariners.gif")
sportsArray[2] = new Array("Seattle Seahawks","seahawks.htm","The Seattle Seahawks are a National Football League team based in Seattle, Washington.","sports_seahawks.gif")
sportsArray[3] = new Array("Seattle Sounders","sounders.htm","The Seattle Sounders are two U.S. professional soccer teams based in Seattle, Washington.","sports_sounders.gif")
sportsArray[4] = new Array("Seattle Storm","storm.htm","The Seattle Storm joined the Women's National Basketball Association in 2000.","sports_storm.gif")
sportsArray[5] = new Array("Seattle Thunderbirds","thunderbirds.htm","The Seattle Thunderbirds are an ice hockey team in Seattle, Washington that belongs to the Western Hockey League.","sports_thunderbirds.gif")
sportsArray[6] = new Array("Washington Huskies","huskies.htm","The Washington Huskies are the athletic teams at the University of Washington.","sports_uw.gif")

function createBot() {
document.write('You are currently on: <b>'+sportsArray[thisPage][0]+'</b><br><br>')
document.write('<div style="clear:both">');
document.write('<table width="100%" cellpadding="5" cellspacing="0">');
document.write('<tr>');
document.write('<td style="color:#660000"><b>Previous Team</b></td>');
document.write('<td style="color:#660000"><b>Next Team</b></td>');
document.write('</tr>');

document.write('<tr>');

// write previous location
document.write('<td  valign="top" style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">')
document.write('<table width="90%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+sportsArray[thisPage-1][1]+'"><img src="images/'+sportsArray[thisPage-1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+sportsArray[thisPage-1][1]+'">'+sportsArray[thisPage-1][0]+'</a><br>'+sportsArray[thisPage-1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

// write next location
totNum = (sportsArray.length - 1)

if(thisPage == totNum){
document.write('<td style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">&nbsp;<a href="sports.htm">Return to Sports in Seattle Home Page</a></td>')
} else {

document.write('<td valign="top" style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">')
document.write('<table width="90%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+sportsArray[thisPage+1][1]+'"><img src="images/'+sportsArray[thisPage+1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+sportsArray[thisPage+1][1]+'">'+sportsArray[thisPage+1][0]+'</a><br>'+sportsArray[thisPage+1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

}


document.write('</tr></table>');
document.write('</div>');
}

