var highColor = "#dddddd";
function highlight(obj){
	if (navigator.appName == "Microsoft Internet Explorer") {
		if (obj.style.backgroundColor != ""){
			obj.style.backgroundColor = "";
		}else{
			obj.style.backgroundColor = highColor;
		}
	}
}
