// 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='#F1F3F7'";
	eval(chgcell);
	}
chgcell = "window.document."+ celno + ".bgColor='#DCE2E7'";
}
else // assume IE5
{for (var index =1; index < 5; index++)
 {
 	clrIt = "document.getElementById('c"+ index +"').bgColor='#F1F3F7'"; 
	eval(clrIt);
	}
chgcell = "document.getElementById('"+ celno + "').bgColor='#DCE2E7'";
}
 eval(chgcell);

}

function overm(celno)
{ var chgcell
 if (document.layers) { // browser is NN
	chgcell = "window.document."+ celno + ".bgColor='#DCE2E7'";
}
else //assume IE
{
	chgcell = "document.getElementById('"+ celno + "').bgColor='#DCE2E7'";
}
 eval(chgcell);
}

function outm(celno)
{ var chgcell
 if (document.layers) { // browser is NN
	chgcell = "window.document."+ celno + ".bgColor='#F1F3F7'";
}
else //assume IE
{chgcell = "document.getElementById('"+ celno + "').bgColor='#F1F3F7'";
}
 eval(chgcell);
}