	function changeBGColor(option, colorOpt){
		obj = document.getElementById(option);
		//obj.style.color= colorOpt;
		obj.style.backgroundColor = colorOpt;
		//obj.style.fontWeight = 600;
		obj.style.cursor = 'text';
	}

	function SetUpRedirect(goTo) {
		var destination = goTo;
		setTimeout("window.location='"+destination+"'",2000);
		return true;
	}

	function changeColor(option, colorOpt){
		obj = document.getElementById(option);
		obj.style.color= colorOpt;
	}
	function ShowHideSubCat(option) 
	{
		obj = document.getElementById(option);
		if (obj.style.display == "none")
		{
			obj.style.display = "";
		}
		else
		{
			obj.style.display = "none";
		}
	}
