//Phone formatting
function PhoneValidate(valin)
{
	if (!valin){
		return;
	}
   if(valin.search(/\d{3}\-\d{3}\-\d{4}/)==-1)
   {
      alert("Please enter a phone number with areacode, in the format xxx-xxx-xxxx.");
      return false;
   }
}
