/*
 * Created by: Larry Daughenbaugh [ Website: http://www.systemsynapse.com ]
*/

// ****************************************************************************** Validate Form Information
function validateForm(CurrentForm){
	 if (CurrentForm.strFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.ContactForm.strFirstName.focus();
		return false;
	 }
	 if (CurrentForm.strLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.ContactForm.strLastName.focus();
		return false;
	 }
	 if (CurrentForm.strEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.ContactForm.strEmail.focus();
		return false;
	 }
	 sEmail = CurrentForm.strEmail.value;
	 if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.ContactForm.strEmail.focus();
		return false;
	 }
return true;	
}

// ******************* Character Remaining Counter *******************
function textCounter() {
  if (document.ContactForm.strComments.value.length > 500)
    document.ContactForm.strComments.value = document.ContactForm.strComments.value.substring(0, 500);
  else 
    document.ContactForm.CharRemain.value = 500 - document.ContactForm.strComments.value.length;
}

