function imageOn(i) {;
	document.images[i].src=onImgArray[i].src;
}

function imageOff(i) {;
	document.images[i].src=offImgArray[i].src;
}

function setMsg(msg) {;
	window.status = msg;
	return true;
}
//Displays message that page is loaded
function done() {;
	window.alert("The page has finished loading.");
}
//Displays message that page is not available
function notAvail() {;
	window.alert("This page is currently unavailable.");
}
// Loads new window with image
function makeNewWindow(imageUrl,imageDim) {;
	newWindow=window.open(imageUrl,"",imageDim);
}