function toggleDiv(id) {
   try {
       var obj = document.getElementById(id);
       obj.style.display = (obj.style.display == "none") ? "block" : "none";
       } catch (e) {
   }
   return true;
}

	function searchYellowpage() {
		var keyword = $("#search").val();
		var location = $("#location").val();
		if(!keyword) {
			window.alert("ê²€ìƒ‰ì–´ë¥?ìž…ë ¥í•˜ì„¸ìš”\nPlease enter keyword!");
			return false;
		}

		try{
			window.location.href='/search/' + keyword + '?location=' + location; 
			return false;
		}catch(e){}

	}

	function searchWeather() {
		var keyword = $("#search").val();
		if(!keyword) {
			window.alert("ZIP Codeë¥?ìž…ë ¥í•˜ì„¸ìš”\nPlease enter zip code!");
			return false;
		}

		try{
			window.location.href='/weather/' + keyword; 
			return false;
		}catch(e){}

	}

