/*function clearSearch(wh) {
	if (wh.value=="Type a city or zip code in Utah") {
		wh.value="";
		wh.style.color="#000000";
	}
}
*/

function hLight(obj,st,st2) {
	if (st=="off") {
		//alert('hi');
		if (document.getElementById(st2).checked==true) {
			obj.style.backgroundColor='#FFFFCC';
			return false;
		}
		obj.style.backgroundColor='#FFFFFF';
	}
	else {

		obj.style.backgroundColor='#FFFF88';
	}
}
function checkIt(obj,st) {
	if (document.getElementById(st).checked==true) {
		document.getElementById(st).checked=false;
		obj.style.backgroundColor="#FFFFFF";
	}
	else {
		document.getElementById(st).checked=true;
		obj.style.backgroundColor="#FFFFCC";
	}
}

function clearSearch(wh) {
	if (wh.value=="Type a city or zip code in Utah") {
		wh.value="";
	}
}
