<!-- Dummy comment to hide code from non-JavaScript browsers.

if (document.images) {
buttonUp = new Image(); buttonUp.src = "images/btn-bkg1.jpg"; // Never use bitmaps for the web.
buttonDown = new Image(); buttonDown.src = "images/btn-bkg2.jpg";
}

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 + "')";
}
}

// End of dummy comment -->
