parksArray = new Array()
parksArray[0] = new Array("Back to Parks","parks.htm","","parks_alki_sm.gif")
parksArray[1] = new Array("Alki Beach","alki.htm","A trip to Alki Beach in West Seattle and along the beachfront has few equals in the city, with views of the Downtown Seattle skyline and Puget Sound.","parks_alki_sm.gif")
parksArray[2] = new Array("Carkeek Park","carkeek.htm","Carkeek Park is a 216 acre park in northwest Seattle, offering hiking trails, play and picnic areas, and a sand beach on Puget Sound.","parks_carkeek_sm.gif")
parksArray[3] = new Array("Discovery Park","discov.htm","Discovery Park is a 534 acre natural area park, overlooking Puget Sound, with views of the Cascade and Olympic mountains.","parks_discovery_sm.gif")
parksArray[4] = new Array("Gas Works Park and Lake Union","union.htm","Gas Works Park sits on the north end Lake Union, a 19.1 acre public park built on the site of a former gasification plant.","parks_gasworks_sm.gif")
parksArray[5] = new Array("Golden Gardens","shilsho.htm","Golden Gardens Park is located next to Puget Sound in the Ballard neighborhood of Seattle, and to the south lies Shilshole Bay and Marina.","parks_goldengardens_sm.gif")
parksArray[6] = new Array("Green Lake Park","greenlake.htm","Green Lake Park is located in north central Seattle. The large lake is surrounded by a 2.8 mile path for runners, bikers, skaters and walkers.","parks_greenlake_sm.gif")
parksArray[7] = new Array("Japanese Gardens","gardens.htm","Located within the Washington Park Arboretum, the Japanese Gardens are a 3-1/2 acre formal garden.","parks_japanese_garden_sm.gif")
parksArray[8] = new Array("Kubota Garden","kubota.htm","Kubota Garden is a 20 acre Japanese garden located in the Rainier Beach neighborhood of Seattle.","parks_kubota_sm.gif")
parksArray[9] = new Array("Lincoln Park","lincoln.htm","Lincoln Park is a 135 acre public park in West Seattle, next to Puget Sound.","parks_lincoln_sm.gif")
parksArray[10] = new Array("Martin Luther King, Jr. Memorial Park","mlk.htm","The Martin Luther King, Jr. Memorial Park is a 4-1/2 acre public park in Central Seattle.","parks_mlk_sm.gif")
parksArray[11] = new Array("Myrtle Edwards Park","myrtle.htm","Myrtle Edwards Park is located along the Seattle waterfront, north of downtown and south of the Magnolia neighborhood.","parks_myrtle_sm.jpg")
parksArray[12] = new Array("Schmitz Preserve Park","schmitz.htm","Schmitz Preserve Park is a 53 acre park on Alki Point in West Seattle. The park contains an old growth forest, walking paths, hiking and nature studies.","parks_schmitz_sm.gif")
parksArray[13] = new Array("Seattle Waterfront","water.htm","The Seattle Waterfront is a span of parks, piers, ferry and ship terminals, promenades and public spaces, stretching from Pioneer Square on the south to Shilshole Marina on the north.","parks_waterfront_sm.gif")
parksArray[14] = new Array("Seward Park","seward.htm","Seward Park is a 300 acre peninsula on Lake Washington, located in southeast Seattle. A 2.4 mile bike and pedestrian trail loops around the perimeter of the park.","parks_seward_sm.gif")
parksArray[15] = new Array("Warren G Magnuson Park","magnuson.htm","Warren G. Magnuson Park is located on a mile-long stretch of Lake Washington shoreline in northeastern Seattle, in the Sand Point neighborhood.","parks_magnuson_sm.gif")
parksArray[16] = new Array("Washington Park Arboretum","arbor.htm","The Washington Park Arboretum is a 200-acre park on the shore of Lake Washington, in the Madison Park neighborhood of Seattle, with over 40,000 trees, shrubs and vines from all around the world.","parks_arboretum_sm.gif")

function createBot() {
//document.write('You are currently on: <b>'+parksArray[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 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="90%" 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="90%" 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>');
}

