// fromgrammyscloset.com Copyright 2009 validate.js

function validateForm() {
var invalid = " "; // Invalid character is a space
var minLength2 = 2; // Minimum length for First Name

// check that this FIRSTNAME field is not blank
if ((document.form1.fName.value == '') || (document.form1.fName.value.length < minLength2)) {
alert('Please fill in your First Name. It must be at least ' + minLength2 + ' letters long.');
return false;
}

//checking that your email addess is valid, it should not be empty, and it should include a . and a @
if ((document.form1.eAddr.value == "") || 
(document.form1.eAddr.value.indexOf('@') == -1) || 
(document.form1.eAddr.value.indexOf('.') == -1)) {
alert('\tYour email address should look like the example.\t\n\tPlease include @ and .\t\n\temail@example.com\t');
return false;
	}
}
