function SetHighLight(TRElement)
{
		R = TRElement.id
		document.all.mainTab.rows(R).cells(0).bgColor = '#F0682A'; 
		document.all.mainTab.rows(R).cells(2).bgColor = '#F0682A';
}

function SetOut(TRElement) 
{
		R = TRElement.id
		document.all.mainTab.rows(R).cells(0).bgColor = '#FFFFFF'; 
		document.all.mainTab.rows(R).cells(2).bgColor = '#FFFFFF';
}

function showhideInfor(TheElem) { // --------Show Hide Div------
		if (document.all) { //IS IE 4 or 5 (or 6 beta)
			if (document.all(TheElem).style.display == "none"){
				eval( "document.all(TheElem).style.display = 'block'");
			} else {
				eval( "document.all(TheElem).style.display = 'none'");
			}
		}
		if (document.layers) { //IS NETSCAPE 4 or below
			if (document.layers[TheElem].display == "none"){
				document.layers[TheElem].display = "block";
			} else {
				document.layers[TheElem].display = "none";
			}
		}
		if (document.getElementById && !document.all) {
			maxWorking = document.getElementById(TheElem);
			if (maxWorking.style.display == "none"){
				maxWorking.style.display = "blcok";
				} else {
				maxWorking.style.display = "none";
			}
		}
	}