﻿<!--// JScript File

function expand(obj) {
	obj = document.getElementById(obj)
	if(sValue!=null && sValue.id != obj.id) {
		hide(sValue.id);
		lite("TD_" + sValue.id);
	}
	if(sValue.id != obj.id) {
		hide(obj.id);
		lite("TD_" + obj.id);
		sValue = obj;
	}
}

function hide(obj) {
	obj = document.getElementById(obj)
	if(typeof obj.tagName != "undefined") {
	    
		if(obj.style.display == "")
			obj.style.display  = "none";
		else
			obj.style.display  = "";
	}
}

function lite(obj) {
	obj = document.getElementById(obj)
	if(obj != null) {
		if(obj.style.backgroundColor == "#dddddd" || obj.style.backgroundColor == "rgb(221, 221, 221)")
			obj.style.backgroundColor = "whitesmoke";
		else
			obj.style.backgroundColor = "#dddddd";
			obj.style.fontcolor = "#FFFFFF"
	}
}
//-->
