collegesArray = new Array()
collegesArray[0] = new Array("Back to Colleges","colleges.htm","Return to Colleges home page on Seattle Virtual Tour","college_cornish_sm.gif")
collegesArray[1] = new Array("Antioch University","antioch.htm","Antioch is a small university in downtown Seattle, offering a variety of professional certificates.","college_antioch_sm.jpg")
collegesArray[2] = new Array("Art Institute of Seattle","artinstitute.htm","The Art Institute of Seattle has a proud history as a part of the Seattle community and a contributor to the creative industries in the Northwest.","college_ais_sm.gif")
collegesArray[3] = new Array("Cornish College of the Arts","cornish.htm","For almost 90 years Cornish College of the Arts has educated students and nurtured artists who, as professionals, have consistently contributed to the culture of our society.","college_cornish_sm.gif")
collegesArray[4] = new Array("North Seattle Community College","northseattle.htm","NSCC is located in the Northgate area five miles north of the Seattle city center in a quiet residential neighborhood.","college_nscc_sm.gif")
collegesArray[5] = new Array("Seattle Central Community College","central.htm","Seattle Central embraces a richer mix of cultures, lifestyles, ages, and nationalities.","college_sccc_sm.gif")
collegesArray[6] = new Array("Seattle Pacific University","seattlepacific.htm","SPU is a comprehensive Christian university of the liberal arts, sciences and professions.","college_spu_sm.gif")
collegesArray[7] = new Array("Seattle University","seattleu.htm","Seattle University is the largest and most diverse independent university in the Pacific Northwest.","college_seattleuniversity_sm.gif")
collegesArray[8] = new Array("Seattle Vocational Institute","vocational.htm","Seattle Vocational Institute provides basic skills, vocational and workforce training opportunities through short-term, self-contained programs that lead to jobs with a future.","college_vocational_sm.jpg")
collegesArray[9] = new Array("South Seattle Community College","southseattle.htm","South Seattle Community College is a constantly evolving educational community dedicated to providing quality learning experiences.","college_southseattle_sm.jpg")
collegesArray[10] = new Array("University of Washington","uw.htm","The U-Dub is one of the top ranked public universities in the nation and famous for its prestigious School of Medicine and National Champion Husky football team.","college_uw_sm.gif")

function createBot() {
//document.write('You are currently on: <b>'+collegesArray[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 College</b></td>');
document.write('<td style="color:#660000"><b>Next College</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="'+collegesArray[thisPage-1][1]+'"><img src="images/'+collegesArray[thisPage-1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+collegesArray[thisPage-1][1]+'">'+collegesArray[thisPage-1][0]+'</a><br>'+collegesArray[thisPage-1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

// write next location
totNum = (collegesArray.length - 1)

if(thisPage == totNum){
document.write('<td style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">&nbsp;<strong><a href="colleges.htm">Return to Colleges 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="90%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+collegesArray[thisPage+1][1]+'"><img src="images/'+collegesArray[thisPage+1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+collegesArray[thisPage+1][1]+'">'+collegesArray[thisPage+1][0]+'</a><br>'+collegesArray[thisPage+1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

}


document.write('</tr></table>');
document.write('</div>');
}

