var highColor = "#C9DDFC";
function hl(obj){
	if (obj.style.backgroundColor != ""){
		obj.style.backgroundColor = "";
	}else{
		obj.style.backgroundColor = highColor;
	}
}
var highColor2 = "#DAC6F2";
function h2(obj){
	if (obj.style.backgroundColor != ""){
		obj.style.backgroundColor = "";
	}else{
		obj.style.backgroundColor = highColor2;
	}
}
var highColor3 = "#FFCC66";
function h3(obj){
	if (obj.style.backgroundColor != ""){
		obj.style.backgroundColor = "";
	}else{
		obj.style.backgroundColor = highColor3;
	}
}
var highColor4 = "#C1E6D7";
function h4(obj){
	if (obj.style.backgroundColor != ""){
		obj.style.backgroundColor = "";
	}else{
		obj.style.backgroundColor = highColor4;
	}
}
