//Used by the Graphic Button Control
function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	    }
	}
function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
		}
	}