<!--
//
// JavaScript Library
//
// Author: Hugh Tran
// Date:   11/01/2001
//

function changeColor(celno) {
    var changeCell
    if (document.layers) { //browser is NN
        for (var i = 1; i < 6; i++) {
            changeCell = "window.document.c" + i + ".backgroundColor = 'red'";
            eval(changeCell);
        }
        changeCell = "window.document."+ celno + ".backgroundColor = 'peru'";
    } else { // assume IE5
        for (var index = 1; index < 6; index++) {
            clrIt = "document.getElementById('c" + index + "').style.backgroundColor = 'red'"; 
            eval(clrIt);
        }
        changeCell = "document.getElementById('" + celno + "').style.backgroundColor = 'peru'";
    }
    eval(changeCell);
}

function mouseOver(celno) {
    var changeCell
    if (document.layers) { // browser is NN
        changeCell = "window.document."+ celno + ".backgroundColor='orange'";
    } else { //assume IE
        changeCell = "document.getElementById('"+ celno + "').style.backgroundColor = 'orange'";
    }
    eval(changeCell);
}

function mouseOut(celno) {
    var changeCell
    if (document.layers) { // browser is NN
        changeCell = "window.document."+ celno + ".bgColor='red'";
    } else { //assume IE
        changeCell = "document.getElementById('"+ celno + "').style.backgroundColor = 'red'";
    }
    eval(changeCell);
}
-->
