// JavaScript Document

/*---------------------general Version Checkers ------------------------------*/

var bV=parseInt(navigator.appVersion);
NS4=(document.layers) ? true : false;
IE4=((document.all)&&(bV>=4)) ? true : false;
DOM=(!document.layers && !document.all && bV>=4) ? true : false;
capable = (NS4 || IE4 || DOM) ? true : false;
var active;

/*--------------------changes CellColor on Mouse Over-------------------------*/

function setPointer(theRow, thePointerColor){
    if(DOM||IE4) theRow.style.backgroundColor = thePointerColor;
    return true;
} 