// Main top navigation

function overm(celname, celcol){ 
	var chgcell
	if (document.layers) { // browser is NN
		chgcell = "window.document."+ celname + ".bgColor='"+ celcol + "'";
	}
	else //assume IE
	{
		chgcell = "document.getElementById('"+ celname + "').bgColor='"+ celcol + "'";
	}
 	eval(chgcell);
}

function outm(celname, celcol){
	var chgcell
	if (document.layers) { // browser is NN
		chgcell = "window.document."+ celname + ".bgColor='"+ celcol + "'";
	}
	else //assume IE
	{
		chgcell = "document.getElementById('"+ celname + "').bgColor='"+ celcol + "'";
	}
	eval(chgcell);
}

function cellChange(celname, celcol){
	var chgcell
	if (document.layers) { // browser is NN
		chgcell = "window.document."+ celname + ".bgColor='"+ celcol + "'";
	}
	else //assume IE
	{
		chgcell = "document.getElementById('"+ celname + "').bgColor='"+ celcol + "'";
	}
 	eval(chgcell);
}

