function highlight_in(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
		theObj = eval("document." + objIn)
//		document.anchors.bb.style="color:#FF0000"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "#FF0000";
	}	
}
function highlight_out(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
//		document.anchors.bb.style="color:#0000FF"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "#0000FF";
	}	
}

function highlight_in2(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
		theObj = eval("document." + objIn)
//		document.anchors.bb.style="color:#FF0000"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "#FFFFFF";
		theObj.style.background="#a52a2a"
	}	
}
function highlight_out2(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
//		document.anchors.bb.style="color:#FF0000"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "#000000";
		theObj.style.background=""
	}	
}


function highlight_out2red(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
//		document.anchors.bb.style="color:red"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "red";
		theObj.style.background=""
	}	
}

function highlight_out2green(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
//		document.anchors.bb.style="color:#008000"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "#008000";
		theObj.style.background=""
	}	
}

function highlight_out2blue(objIn)
{
	var theObj
	if (navigator.appName == "Netscape") {
//		document.anchors.bb.style="color:blue"
	} else {
		theObj = eval("document.all." + objIn)
		theObj.style.color = "blue";
		theObj.style.background=""
	}	
}
