function ValidateData() {
  var Validated = true;

  if (window.document.contact.FirstName.value=="") {
    window.alert("Please enter your First Name!");
    window.document.contact.FirstName.focus();
    Validated = false;
  }
  else if (window.document.contact.LastName.value=="") {
    window.alert("Please enter your Last Name!");
    window.document.contact.LastName.focus();
    Validated = false;
  }
  else if (window.document.contact.PhoneA.value=="") {
    window.alert("Please enter your Area Code!");
    window.document.contact.PhoneA.focus();
    Validated = false;
  }
  else if (window.document.contact.PhoneB.value=="") {
    window.alert("Please Check your Phone Number!");
    window.document.contact.PhoneB.focus();
    Validated = false;
  }
  else if (window.document.contact.PhoneC.value=="") {
    window.alert("Please Check your Phone Number!");
    window.document.contact.PhoneC.focus();
    Validated = false;
  }
  else if (window.document.contact.Email.value=="") {
    window.alert("Please enter your E-Mail address!");
    window.document.contact.Email.focus();
    Validated = false;
  }
  else if (window.document.contact.Email.value.indexOf("@") == -1) {
    window.alert("Please enter a valid E-Mail Address!");
    window.document.contact.Email.focus();
    Validated = false;
  }
  else if (window.document.contact.Email.value.indexOf(".") == -1) {
    window.alert("Please enter a valid E-Mail Address!");
    window.document.contact.Email.focus();
    Validated = false;
  }
  else if (window.document.contact.Email.value != window.document.contact.EmailConfirm.value) {
    window.alert("Please verify your E-Mail address!");
	window.document.contact.EmailConfirm.focus();
	Validated = false;
  }
  window.document.contact.Phone.value = window.document.contact.PhoneA.value + "-" + window.document.contact.PhoneB.value + "-" + window.document.contact.PhoneC.value;
  if (window.document.contact.Phone.value == "--")
    window.document.contact.Phone.value = "";

  if (window.document.contact.cbxEmails.checked != 1) {
    window.document.contact.EmailOk.value = "NO"; 
  }
  else {
	window.document.contact.EmailOk.value = "YES";
    }

  if (Validated) {
    window.document.contact.submit();
  }
}