// Prod navigation

function overProd(arrbg, celname, celcol){ 
	var chgarr
	var chgcell
	if (document.layers) { // browser is NN
		chgarr = "window.document."+ arrbg + ".bgColor='"+ celcol + "'";
		chgcell = "window.document."+ celname + ".bgColor='"+ celcol + "'";
	}
	else //assume IE
	{
		chgarr = "document.getElementById('"+ arrbg + "').bgColor='"+ celcol + "'";
		chgcell = "document.getElementById('"+ celname + "').bgColor='"+ celcol + "'";
	}
	eval(chgarr);
 	eval(chgcell);
}

function outProd(arrbg, celname, celcol){
	var chgarr
	var chgcell
	if (document.layers) { // browser is NN
		chgarr = "window.document."+ arrbg + ".bgColor='"+ celcol + "'";
		chgcell = "window.document."+ celname + ".bgColor='"+ celcol + "'";
	}
	else //assume IE
	{
		chgarr = "document.getElementById('"+ arrbg + "').bgColor='"+ celcol + "'";
		chgcell = "document.getElementById('"+ celname + "').bgColor='"+ celcol + "'";
	}
	eval(chgarr);
 	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);
}
