// This is a cross-browser (IE5.5 & NN4.7) cell background changer
// Written by: Steven Loretero
// Oct 28, 2001
// email: leialii@aloha.net
// 
var oncell = "c0"
function chgColor(celno)
{
 var chgcell
 if (document.layers) { //browser is NN
	for (var i = 1; i < 5; i++)
	{
	chgcell = "window.document.c" + i + ".bgColor=''";
	eval(chgcell);
	}
chgcell = "window.document."+ celno + ".bgColor='orange'";
}
else // assume IE5
{for (var index =1; index < 5; index++)
 {
 	clrIt = "document.getElementById('c"+ index +"').bgColor=''"; 
	eval(clrIt);
	}
chgcell = "document.getElementById('"+ celno + "').bgColor='C7E1F7'";
}
 eval(chgcell);

}

function overm(celno)
{ var chgcell
 if (document.layers) { // browser is NN
	chgcell = "window.document."+ celno + ".bgColor='96B0DC'";
}
else //assume IE
{
	chgcell = "document.getElementById('"+ celno + "').bgColor='96B0DC'";
}
 eval(chgcell);
}

function outm(celno)
{ var chgcell
 if (document.layers) { // browser is NN
	chgcell = "window.document."+ celno + ".bgColor=''";
}
else //assume IE
{chgcell = "document.getElementById('"+ celno + "').bgColor=''";
}
 eval(chgcell);
}
