// JavaScript Document
function showImage(elem) {
	if(!document.getElementById) {
		return false;
	} else {
		var bigPic = elem.getAttribute('medimage');
		var newCaption = elem.firstChild.getAttribute('alt');
		document.getElementById('mainBounds').firstChild.setAttribute('src',bigPic);
		var theCaption = document.getElementById('captionBox');
		theCaption.firstChild.nodeValue = newCaption;
	}
}