// JavaScript Document
<!--

if(theID !=""){
	document.getElementById("tr" + theID).style.backgroundColor = "#003333";
//	alert("THE ID " + theID );
}

function fnMouseOver(id) {
	document.getElementById("tr" + id).style.backgroundColor = "#003333";		
}

function fnMouseOut(id){
	if(id != theID ){
		document.getElementById("tr" + id).style.backgroundColor = "";	
	}
}

function fnMouseOver(id) {
	document.getElementById("tr" + id).style.backgroundColor = "#003333";		
}

function fnShowMenu(id){
	if(document.getElementById("div" + id).style.visibility == "visible") {
		document.getElementById("div" + id).style.visibility = "hidden";
		document.getElementById("div" + id).style.position = "absolute";
		document.getElementById("div" + id).style.height = 0;
	}
	else {
		document.getElementById("div" + id).style.visibility = "visible";
		document.getElementById("div" + id).style.position = "relative";
	}
}
	if(varMenu != "" ){
		document.getElementById("div" + varMenu).style.visibility = "visible";
		document.getElementById("div" + varMenu).style.position = "relative";
	}

-->