museumsArray = new Array()
museumsArray[0] = new Array("Back to Museums and Galleries","museums.htm","Return to Museums and Galleries home page on Seattle Virtual Tour","burke_sm1.jpg")
museumsArray[1] = new Array("Burke Museum","burke.htm","The Burke Museum welcomes all visitors who are curious about the natural wonders of Washington state, the Pacific Northwest, and the Pacific Rim.","burke_sm1.jpg")
museumsArray[2] = new Array("Center for Wooden Boats Maritime Museum","maritime.htm","The Center for Wooden Boats is a hands on maritime museum, dedicated to preserving a rich, vital and varied small craft heritage.","wooden_sm1.jpg")
museumsArray[3] = new Array("Center on Contemporary Art","coca.htm","CoCA serves the Pacific Northwest as a catalyst and forum for the advancement, development, and understanding of contemporary art.","coca_sm1.jpg")
museumsArray[4] = new Array("The Children's Museum","childrens.htm","The mission of The Children's Museum is to bring to life the joy of discovery for children and their families through fun, creative and hands-on explorations of the world around them.","childrens_sm1.jpg")
museumsArray[5] = new Array("Experience Music Project","emp.htm","Located in Seattle Center, EMP is a one-of-a-kind music museum combining interactive and interpretive exhibits.","emp_sm1.jpg")
museumsArray[6] = new Array("Frye Art Museum","frye.htm","The Frye Art Museum acquires, preserves, exhibits, and interprets visual art of the highest quality.","frye_sm1.jpg")
museumsArray[7] = new Array("Henry Art Gallery","henry.htm","The Henry Art Gallery is a nationally-recognized center for the exploration of visual culture and a premier modern and contemporary art museum.","henry_sm1.jpg")
museumsArray[8] = new Array("Maritime Discovery Center","discovery.htm","Odyssey Maritime Discovery Center celebrates the Northwest’s provides a place for people of all ages to discover the maritime community’s contemporary influence on our lives.","maritime_sm1.jpg")
museumsArray[9] = new Array("Museum of Flight","flight.htm","The Museum of Flight is one of the world's premiere air and space museums, with something to offer every member of your family or group.","flight_sm1.jpg")
museumsArray[10] = new Array("Museum of History and Industry","industry.htm","The Museum of History & Industry offers engaging exhibits and programs of the Northwest's diverse cultural, social and economic history.","mohai_sm1.jpg")
museumsArray[11] = new Array("Nordic Heritage Museum","nordic.htm","The Nordic Heritage Museum is the only museum in the United States to honor the legacy of immigrants from the five Nordic countries.","nordic_sm1.jpg")
museumsArray[12] = new Array("Olympic Sculpture Park","olympic.htm","The Olympic Sculpture Park is a vibrant, 9-acre green space for people to experience art outdoors.","olympic_sm1.jpg")
museumsArray[13] = new Array("Pacific Science Center","sciencecenter.htm","Pacific Science Center inspires a lifelong interest in science, mathematics and technology by engaging diverse communities through interactive and innovative exhibits and programs.","science_sm1.jpg")
museumsArray[14] = new Array("Science Fiction Museum","scifi.htm","The Science Fiction Museum and Hall of Fame (SFM) is the first museum devoted to the dynamic and far-reaching genre of science fiction.","sfm_sm1.jpg")
museumsArray[15] = new Array("Seattle Art Museum","seattleart.htm","Seattle Art Museum in Downtown Seattle offers the public a rich mix of special exhibits, galleries, family programs, films, lectures, tours, performances and more.","seattleart_sm1.jpg")
museumsArray[16] = new Array("Seattle Asian Art Museum","asianart.htm","The Seattle Asian Art Museum offers a world-renowned collection of Japanese, Chinese, Korean, Indian, Southeast Asian, and Himalayan art.","asianart_sm1.jpg")
museumsArray[17] = new Array("Seattle Metropolitan Police Museum","policemuseum.htm","The largest police museum in the western U.S., combining historical displays with an interactive learning area for children and adults.","police_sm1.jpg")
museumsArray[18] = new Array("SODO Urban Art Corridor","sodourbanart.htm","The SODO Urban Art Corridor was developed to enrich the surroundings and discourage graffiti by creating murals throughout this area of Seattle.","urban_sm1.jpg")
museumsArray[19] = new Array("Wing Luke Asian Museum","wingluke.htm","The Wing Luke Asian Museum engages the Asian Pacific American communities and the public in exploring issues related to the culture, art and history of Asian Pacific Americans.","wingluke_sm1.jpg")

function createBot() {
document.write('You are currently on: <b>'+museumsArray[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" valign="top"><b>Previous Museum</b></td>');
document.write('<td style="color:#660000" valign="top"><b>Next Museum</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="'+museumsArray[thisPage-1][1]+'"><img src="images/'+museumsArray[thisPage-1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+museumsArray[thisPage-1][1]+'">'+museumsArray[thisPage-1][0]+'</a><br>'+museumsArray[thisPage-1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

// write next location
totNum = (museumsArray.length - 1)

if(thisPage == totNum){
document.write('<td style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">&nbsp;<strong><a href="museums.htm">Return to Museums Home Page</a></strong></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="'+museumsArray[thisPage+1][1]+'"><img src="images/'+museumsArray[thisPage+1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+museumsArray[thisPage+1][1]+'">'+museumsArray[thisPage+1][0]+'</a><br>'+museumsArray[thisPage+1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

}


document.write('</tr></table>');
document.write('</div>');
}
