 function swapimage (whichpic) {

if (document.all) {
document.getElementById = document.all;
}
	if (document.getElementById) {
		document.getElementById('imgspot').src = whichpic.href;
		if (whichpic.title) {
			document.getElementById('gallery').childNodes[0].nodeValue = whichpic.title;
		} else {
			document.getElementById('gallery').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
		}
		return false;
	} else {
		return true;
	}
}