// JavaScript Document

function turnOn(theImage) {
document[theImage].src = "/graphics/" + theImage + "On.jpg";
}

function turnOff(theImage) {
document[theImage].src = "/graphics/" + theImage + "Off.jpg";
}