// 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 overCat(celname1,celname2,celCol){
	var chgcell1
	var chgcell2
	if (document.layers) { // browser is NN
		chgcell1 = "window.document."+ celname1 +".bgColor='"+ celCol +"'";
		chgcell2 = "window.document."+ celname2 +".bgColor='"+ celCol +"'";
	}
	else //assume IE
	{
		chgcell1 = "document.getElementById('"+ celname1 +"').bgColor='"+ celCol +"'";
		chgcell2 = "document.getElementById('"+ celname2 +"').bgColor='"+ celCol +"'";
	}
 	eval(chgcell1);
 	eval(chgcell2);
}

function outCat(celname1,celname2,celCol){
	var chgcell1
	var chgcell2
	if (document.layers) { // browser is NN
		chgcell1 = "window.document."+ celname1 +".bgColor='"+ celCol +"'";
		chgcell2 = "window.document."+ celname2 +".bgColor='"+ celCol +"'";
	}
	else //assume IE
	{
		chgcell1 = "document.getElementById('"+ celname1 +"').bgColor='"+ celCol +"'";
		chgcell2 = "document.getElementById('"+ celname2 +"').bgColor='"+ celCol +"'";
	}
	eval(chgcell1);
 	eval(chgcell2);
}

function overRow(rowName,rowCol){
	var chgRow
	if (document.layers) { // browser is NN
		chgRow = "window.document."+ rowName +".bgColor='"+ rowCol +"'";
	}
	else //assume IE
	{
		chgRow  = "document.getElementById('"+ rowName +"').bgColor='"+ rowCol +"'";
	}
 	eval(chgRow);
}

function outRow(rowName,rowCol){
	var chgRow
	if (document.layers) { // browser is NN
		chgRow = "window.document."+ rowName +".bgColor='"+ rowCol +"'";
	}
	else //assume IE
	{
		chgRow  = "document.getElementById('"+ rowName +"').bgColor='"+ rowCol +"'";
	}
 	eval(chgRow);
}

