<!-- **************************************************** -->
<!-- *                   The ImageSensor                * -->
<!-- *                                                  * -->
<!-- * The ImageSensor will toggle the images based on  * -->
<!-- * the onMouseOver and onMouseOut events.           * -->
<!-- *                                                  * -->
<!-- * Copyright (c) 1998 Ascii Technologies, Inc.      * -->
<!-- *               http://www.asciitechnologies.com   * -->
<!-- **************************************************** -->
<!-- **************************************************** -->
<!-- *               Engage Cloaking Device             * -->
<!-- **************************************************** -->

	function turnOn() {
		what = window.event.srcElement;
		if (what.tagName == "IMG") {
			what.src = what.src.substring(0,(what.src.indexOf("-off.gif"))) + "-on.gif";
			window.event.cancelBubble = true;
		}
	}

	function turnOff() {
		what = window.event.srcElement
		if (what.tagName == "IMG") {
			what.src = what.src.substring(0,(what.src.indexOf("-on.gif"))) + "-off.gif";
			window.event.cancelBubble = true;
		}
	}

<!-- **************************************************** -->
<!-- *              Disengage Cloaking Device           * -->
<!-- **************************************************** -->

