var highColor = "#ffffcc";
function highlight(obj){
	if (obj.style.backgroundColor != ""){
		obj.style.backgroundColor = "";
	}else{
		obj.style.backgroundColor = highColor;
	}
}
