var nn = (navigator.appName == "Netscape");
var win = (navigator.userAgent.indexOf("Win")!=-1)
var browserversion = navigator.appVersion.substring(0,3)



function highlightie5(o,check){
if(check==0) 
{
	if(nn)
		{
			if (document.getElementById && document.getElementById(o) && document.getElementById(o).style){
				document.getElementById(o).style.backgroundColor="#FBEAC0"
				document.getElementById(o).style.color="#FF9900"
			}
			else{    
			var o = eval('document.'+o);
			}
		}
		else
		{
			document.getElementById(o).style.backgroundColor="#FBEAC0"
			document.getElementById(o).style.color="#FF9900"
		}

	}
}

function lowlightie5(o,check){
if(check==0) 
{
	if(nn)
		{
			if (document.getElementById && document.getElementById(o) && document.getElementById(o).style){
				document.getElementById(o).style.backgroundColor="#FBF1D8"
				document.getElementById(o).style.color="#08344E"
			}
			else{    
			var o = eval('document.'+o);
			}
		}
		else
		{
			document.getElementById(o).style.backgroundColor="#FBF1D8"
			document.getElementById(o).style.color="#08344E"
			// FBF1D8  L
			// FBEAC0  h
		}

	} 
}

