generalArray = new Array()
generalArray[0] = new Array("Back to General Attractions","attractions.htm","","pioneer1_sm.gif")
generalArray[1] = new Array("Ballard Locks","locks.htm","A link for boats between Puget Sound and local freshwater lakes.","locks10_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.","benaroya1_sm.gif")
generalArray[3] = new Array("Pike Place Market","pikep.htm","The oldest continually operating farmers market in the country.","pikeplace3_sm.gif")
generalArray[4] = new Array("Pioneer Square","pioneer.htm","The cultural heart of Seattle located between Downtown and the Waterfront.","pioneer1_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.","port1_sm.jpg")
generalArray[6] = new Array("Seattle Aquarium","aquarium.htm","The Seattle Aquarium is a nationally recognized aquatic educational center.","aquarium1_sm.gif")
generalArray[7] = new Array("Seattle Center","center.htm","An extraordinary urban park and entertainment center.","center1_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.","streetcar1_sm.gif")
generalArray[9] = new Array("Seattle Underground Tour","underground.htm","A leisurely, guided walking tour beneath Seattle’s sidewalks and streets.","tour1.jpg")
generalArray[10] = new Array("Woodland Park Zoo","zoo.htm","The 92-acre Woodland Park Zoo is a conservation and education institution.","zoo1_sm.gif")

function createBot() {
document.write('You are currently on: <b>'+generalArray[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="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="'+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="100%" 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>');
}
