// JavaScript Document

function swapImage(thisImage, whichColour) {
	document.getElementById(thisImage).src = 'images/nav/' + thisImage + whichColour + '.gif';
}

function showPhoto(whichPhoto,windowName) {
	window.open(whichPhoto,windowName,"status=no,toolbar=no,location=no,menubar=no,directories=no,resizable=yes,scrollbars=yes,height=500,width=600");		
}

function goTo(goHere) {
	location.href = goHere;	
}
