 var formValid = new Validation('requestInfo');
	new MaskedInput('#dayphone', '999-999-9999'); 
	new MaskedInput('#eveningphone', '999-999-9999'); 
	new MaskedInput('#fax', '999-999-9999'); 
	
	Validation.addAllThese([
		['validate-one-required-table', 'Please select one of the above options.', function (v,elm) {
			var p = elm.parentNode.parentNode.parentNode;
			var options = p.getElementsByTagName('INPUT');
			return $A(options).any(function(elm) {
				return $F(elm);
			});
		}],
		['validate-zipcode', 'Please enter a valid US zip code.', function (v) {
			return Validation.get('IsEmpty').test(v) ||  /^(\d{5})|(\d{4}-\d{5})$/.test(v)
		}],
		['validate-phone', 'Please enter a valid phone number.', function (v) {
			return Validation.get('IsEmpty').test(v) ||  /^[2-9]\d{2}-\d{3}-\d{4}$/.test(v)
		}],
		['validate-number2', 'Number Required.', function(v) {
			return Validation.get('IsEmpty').test(v) || (!isNaN(v) && !/^\s+$/.test(v));
		}]
	]);
	
	function copyAddress(){
		if($("siteloc").checked){
			//   var sAddress = $("address1").value;
			$("buildingsitestate").value = $F('state');
			$("buildingsiteaddress1").value = $("address2").value;
			$("buildingsitecity").value = $("city").value
			$("buildingsitezip").value = $("zip").value
		}
	}
