<!-- Original:  Jenny Blewitt (webmaster@webdesignsdirect.com) -->
<!-- Web Site:  http://www.webdesignsdirect.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

imgCaptions = new Array(
"<h3>Classified Sets</h3><a href=\"photos/burke/map/basement/larger/classified.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><h6>Related Links</h6>xxx<br />xxx",
"<h3>Burke 001</h3><a href=\"photos/burke/map/basement/larger/b001.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><p>Burke 001 is equipped with Mac computers loaded with Hamilton\'s standard suite of software as well as software for creating and manipulating multimedia content. <a href=\"http://onthehill.hamilton.edu/college/its/itsst/labs/b001.html\">More about Burke 001...</a></p><p>This room is sometimes scheduled for workshops and training sessions, so be sure to use the <a href=\"http://my.hamilton.edu/applications/schedule/\">online schedule</a> to determine when the room is available for general public use.</a></p><h6>Contact Information</h6><a href=\"mailto:course-support@hamilton.edu\">Course Support (ITS)</a><br /><br /><h6>Related Links</h6><a href=\"http://onthehill.hamilton.edu/college/its/itsst/labs/b005.html\">Burke 005</a>",
"<h3>Burke 005</h3><a href=\"photos/burke/map/basement/larger/b005.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><p>Burke 005 is a classroom and computer lab equipped with 24 Windows PC\'s loaded with Hamilton\'s standard suite of software as well as some specialized instructional software requested by faculty who teach in this lab. <a href=\"http://onthehill.hamilton.edu/college/its/itsst/labs/b005.html\">More about Burke 005...</a></p></p><p>Use the <a href=\"http://my.hamilton.edu/applications/schedule/\">online schedule</a> to determine when this room is available for general public use.</a><h6>Contact Information</h6><a href=\"mailto:course-support@hamilton.edu\">Course Support (ITS)</a><br /><br /><h6>Related Links</h6><a href=\"http://onthehill.hamilton.edu/college/its/itsst/labs/b001.html\">Burke 001</a>",
"<h3>Lookup PC</h3><a href=\"photos/burke/map/basement/larger/pcb.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><p>There are four Lookup PC\'s in the library. They are configured to always log in with a generic guest account (personal logins are not allowed) and are intended for doing quick lookups in ALEX (the library\'s  catalog), in one of the subscription databases, or to do an Internet search. They are perfect for printing up your electronic course reserves.</p><p>Wordprocessing software is not installed on these computers.</p><h6>Related Links</h6><a href=\"http://lib.hamilton.edu/cgi-bin/Pwebrecon.cgi?DB=local&amp;SL=none&amp;PAGE=rbSearch\">Electronic Course Reserves</a>",
"<h3>Study desks</h3><a href=\"photos/burke/map/basement/larger/study_desks_b.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><p>There are study areas on all four levels of Burke Library. Please be considerate when sharing these areas with others.</p><p>Group study rooms can be reserved in the evenings and on the weekends.</p><p>Wireless connectivity for your laptop is available throughout the library, but electrical outlets are limited.</p><h6>Related Links</h6><a href=\"/library/library_services/access_services/forms/room_res_form.html\" onclick=\"demoPopup(this.href); return false;\">Study Room Reserv. Form</a><br /><a href=\"http://onthehill.hamilton.edu/college/its/documentation/Network%20Related/Wireless/External/Wireless_Home.htm#SETUP\">Wireless connectivity</a>",
"<h3>Bound Periodicals<br />(pre 1900)</h3><a href=\"photos/burke/map/basement/larger/bound_b.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><p>Periodicals in this area are arranged alphabetically by title, but only volumes appearing before 1990 are shelved here.</p><p>Later volumes are shelved on the first floor in the northeast corner in the section labeled \"Bound Periodicals (1990-).\"</p><p>Current issues are on display racks in the \"Current Periodicals\" area next to the \"Browsing\" area on the first floor.</p>",
"<h3>Photocopier</h3><a href=\"photos/burke/map/basement/larger/photocopier_b.jpg\" width=\"450\" border=\"0\" target=\"_blank\">View Larger</a><p>There is one self-service photocopier in the basement of the library and three on the first floor. The staff at the Circulation Desk provides assistance with the photocopiers.</p><p>The photocopiers operate with a VendaCard which may be purchased at the Business Office or in the Computer Center.<p><h6>Related Links</h6><a href=\"/library/about_the_library/policies.html#Self-ServicePhotocopying\">Self-service photocopying</a>"
)

imageList = new Array(
"photos/burke/map/basement/classified.jpg",
"photos/burke/map/basement/b001.jpg",
"photos/burke/map/basement/b005.jpg",
"photos/burke/map/basement/pcb.jpg",
"photos/burke/map/basement/study_desks_b.jpg",
"photos/burke/map/basement/bound_b.jpg",
"photos/burke/map/basement/photocopier_b.jpg"
)

//var imgCap = "Burpers";
var imgNum = 0;

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

ns3up = (browserName == "Netscape" && browserVer >= 3);
ie4up = (browserName.indexOf("Microsoft") >= 0 && browserVer >= 4);

function doPic(imgNum) {

	if (ns3up || ie4up) {
		document.mainpic.src = imageList[imgNum]
		document.getElementById("mytext").innerHTML=imgCaptions[imgNum]
	}
}
/*
function caption(imgNum) {
	imgCap = imgCaptions[imgNum];
	alert("imgNum="+imgNum+" - caption="+imgCap);
}
*/
