function CheckForm()
{
	var regExp;
	var theInput;
	var theResults;

	theInput 	= document.getElementById("name").value;
	if (!theInput) {
      document.getElementById("name").focus();
		alert("Please provide your full name.");
      return false;
	}

	theInput 	= document.getElementById("phone").value;
	if (!theInput) {
      document.getElementById("phone").focus();
		alert("Please provide a phone number where you can currently be reached.");
      return false;
	}

	regExp 		= /^[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$/;
	theInput 	= document.getElementById("email").value;
	theResults	= regExp.exec(theInput);
	if (!theResults) {
      document.getElementById("email").focus();
		alert("Please provide your valid email address.");
      return false;
	}

	theInput 	= document.getElementById("subject").value;
	if (!theInput) {
      document.getElementById("subject").focus();
		alert("Please choose a subject that pertains to you request.");
      return false;
	}

	theInput 	= document.getElementById("comments").value;
	if (!theInput) {
      document.getElementById("comments").focus();
		alert("Please provide your comments.");
      return false;
	}

	return true;
}
