// JavaScript Document

if (document.images) {
buttonUp = new Image(); buttonUp.src = "images/buttonUp.gif";
buttonDown = new Image(); buttonDown.src = "images/buttonDown.gif";
}

function turn_off(cell) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + buttonUp.src + "')";
}
}

function turn_on(cell) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + buttonDown.src + "')";
}
}

