generalArray = new Array()
generalArray[0] = new Array("Back to General Attractions","attractions.htm","","pioneer_sm.gif")
generalArray[1] = new Array("Ballard Locks","locks.htm","The Ballard Locks provides a link for boats between the salt water of Puget Sound and the fresh water of the Ship Canal.","locks_sm.gif")
generalArray[2] = new Array("Benaroya Hall","benaroya.htm","Benaroya Hall is Seattle's premiere concert hall and the downtown home of the Seattle Symphony.","benaroya_sm.gif")
generalArray[3] = new Array("Pike Place Market","pikep.htm","The oldest continually operating farmers market in the country.","pikeplace_sm.gif")
generalArray[4] = new Array("Pioneer Square","pioneer.htm","Pioneer Square marks Seattle's original downtown, dating back to 1852.","pioneer_sm.gif")
generalArray[5] = new Array("Port of Seattle","port.htm","The Port of Seattle manages 1,400 acres of port and airplane facilities, including the Seattle-Tacoma International Airport.","port_sm.jpg")
generalArray[6] = new Array("Seattle Aquarium","aquarium.htm","The Seattle Aquarium provides fun and exciting ways to see, touch and explore the underwater world of the northwest.","aquarium_sm.gif")
generalArray[7] = new Array("Seattle Center","center.htm","Seattle Center offers a fairground, park, and arts and entertainment center all year round.","center_sm.gif")
generalArray[8] = new Array("Seattle Streetcar","streetcar.htm","The South Lake Union line of the Seattle Streetcar connects the South Lake Union neighborhood to the downtown Seattle core.","streetcar_sm.gif")
generalArray[9] = new Array("Seattle Underground Tour","underground.htm","A leisurely, guided walking tour beneath Seattle's sidewalks and streets.","underground_sm.jpg")
generalArray[10] = new Array("Woodland Park Zoo","zoo.htm","The 92-acre Woodland Park Zoo is a zoological garden, located in the Green Lake neighborhood of Seattle.","zoo_sm.gif")

function createBot() {
//document.write('You are currently on: <b>'+generalArray[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="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="'+generalArray[thisPage-1][1]+'"><img src="images/'+generalArray[thisPage-1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+generalArray[thisPage-1][1]+'">'+generalArray[thisPage-1][0]+'</a><br>'+generalArray[thisPage-1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

// write next location
totNum = (generalArray.length - 1)

if(thisPage == totNum){
document.write('<td style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">&nbsp;<a href="attractions.htm">Return to General Attractions 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="'+generalArray[thisPage+1][1]+'"><img src="images/'+generalArray[thisPage+1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+generalArray[thisPage+1][1]+'">'+generalArray[thisPage+1][0]+'</a><br>'+generalArray[thisPage+1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

}


document.write('</tr></table>');
document.write('</div>');
}

