		function chkForm() {
			var obj = document.getElementById("center_search");
			if (obj["zipcode"].value.length < 1 || obj["zipcode"].value == "Zip Code" ) 
				{
				alert("Please, enter the zip Code");
				obj["zipcode"].focus();
				return false;
				}
			obj.action="/center/add_list.asp"
		}
		function isNumeric(str) {
			var obj = document.getElementById("center_search");
			if ((/[^0-9]/g).test(obj[str].value))
			{
			alert("Please use only numbers.")
			obj[str].value = "";
			obj[str].focus();
			}	
		}
		function isSpecialChr(str) {
			var strChk = str;
			var result = (/[^a-zA-Z0-9-_\s]/g).test(strChk);
			return ( result );
		}
		function chkString(str){
			var obj = document.getElementById("center_search");
			var strCity = obj[str].value
			if ( isSpecialChr(strCity) ) {
				alert(str+" name can not include Special Character. Please input again.");
				obj[str].value = strCity.substring(0,strCity.length-1);
				obj[str].focus(); 
				return false;
			}
			return true;
		}