function phone(string) {
	if(!string) return false;
	if(preg_match(/[^0-9\(\)\s\-x]/i,string)) {
		alert("Invalid phone number format");
		return false;
		}
	return true;
	}

function phone_acceptnone(string) {
	if(string) return phone(string);
	return true;
	}

