parksArray = new Array()
parksArray[0] = new Array("Back to Parks","parks.htm","","alki2_sm.gif")
parksArray[1] = new Array("Alki Beach","alki.htm","Located in West Seattle, about 15 minutes from downtown, Alki Beach and drive along the water has few, if any, equals in the city.","alki2_sm.gif")
parksArray[2] = new Array("Carkeek Park","carkeek.htm","Located in northwest Seattle, this popular park offers extraordinary views of Puget Sound and the Olympic Mountains.","carkeek1_sm.gif")
parksArray[3] = new Array("Discovery Park","discov.htm","Discovery Park is a 534 acre natural area park operated by the City of Seattle.","discovery1_sm.gif")
parksArray[4] = new Array("Lake Union / Gas Works Park","union.htm","On the north end of Lake Union is Gas Works Park with a breathtaking view of Lake Union and the cityscape beyond.","gasworks1_sm.gif")
parksArray[5] = new Array("Golden Gardens","shilsho.htm","One of the largest marinas on the West Coast and operated by the Port of Seattle.","goldengardens6_sm.gif")
parksArray[6] = new Array("Green Lake Park","greenlake.htm","Green Lake's expanse of water and green space in the center of a dense urban neighborhood draws thousands of people daily from all over the city.","greenlake1_sm.gif")
parksArray[7] = new Array("Japanese Gardens","gardens.htm","The garden is a haven of beauty and tranquility connecting both the past and the future.","japanese_garden7_sm.gif")
parksArray[8] = new Array("Kubota Garden","kubota.htm","Kubota Garden is a stunning 20 acre landscape that blends Japanese garden concepts with native Northwest plants.","kubota1_sm.gif")
parksArray[9] = new Array("Lincoln Park","lincoln.htm","Lincoln Park's 135 acres of open space provide a broad range of landscape types and a rich variety of recreational opportunities.","lincoln1_sm.gif")
parksArray[10] = new Array("Magnuson Park","magnuson.htm","Warren G. Magnuson Park sits on a splendid mile-long stretch of Lake Washington’s shoreline in northeastern Seattle.","magnuson1_sm.gif")
parksArray[11] = new Array("Martin Luther King, Jr. Memorial Park","mlk.htm","The Martin Luther King, Jr. Memorial Park is a four-and-a-half acre City of Seattle park on the east side of Martin Luther King, Jr. Way.","mlk1_sm.gif")
parksArray[12] = new Array("Myrtle Edwards Park","myrtle.htm","Myrtle Edwards Park has winding bike and pedestrian paths along Elliott Bay, and views of the Olympics Mountains, Mount Rainier, and Puget Sound.","myrtle1_sm.jpg")
parksArray[13] = new Array("Schmitz Preserve Park","schmitz.htm","Schmitz Preserve Park offers visitors an old growth forest, walking paths, hiking and nature studies.","schmitz1_sm.gif")
parksArray[14] = new Array("Seattle Waterfront","water.htm","Seattle has one of the most magnificent, awe-inspiring seaports in the world.","waterfront1_sm.gif")
parksArray[15] = new Array("Seward Park","seward.htm","Seward Park boasts 300 acres of beautiful forest land, old growth forest, a 2.4 mile bike and walking path, an amphitheater, a native plant garden, an art studio, and miles of hiking trails.","seward1_sm.gif")
parksArray[16] = new Array("Washington Park Arboretum","arbor.htm","The Washington Park Arboretum is a beautiful 200-acre park on the shore of Lake Washington.","arboretum_sm1.jpg")

function createBot() {
document.write('You are currently on: <b>'+parksArray[thisPage][0]+'</b><br><br>')
document.write('<div align="center">');
document.write('<table width="100%" cellpadding="5" cellspacing="0">');
document.write('<tr>');
document.write('<td style="color:#660000"><b>Previous Attraction</b></td>');
document.write('<td style="color:#660000"><b>Next Attraction</b></td>');
document.write('</tr>');

document.write('<tr>');

// write previous location
document.write('<td valign="top" style="font-size:small;border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">')
document.write('<table width="100%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+parksArray[thisPage-1][1]+'"><img src="images/'+parksArray[thisPage-1][3]+'" border="0"></a></td>')
document.write('<td valign="top" style="font-size:10pt"><a href="'+parksArray[thisPage-1][1]+'">'+parksArray[thisPage-1][0]+'</a><br>'+parksArray[thisPage-1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

// write next location
totNum = (parksArray.length - 1)

if(thisPage == totNum){
document.write('<td style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">&nbsp;<a href="parks.htm">Back to Parks 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="100%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+parksArray[thisPage+1][1]+'"><img src="images/'+parksArray[thisPage+1][3]+'" border="0"></a></td>')
document.write('<td valign="top" style="font-size:10pt"><a href="'+parksArray[thisPage+1][1]+'">'+parksArray[thisPage+1][0]+'</a><br>'+parksArray[thisPage+1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

}


document.write('</tr></table>');
document.write('</div>');
}
