function CheckRequiredFields() {
var errormessage = new String();

if(WithoutContent(document.form1.email.value))
	{ errormessage += "\n\nPlease enter your email address."; }
if(WithoutContent(document.form1.name1.value))
	{ errormessage += "\n\nPlease enter your two names in the required fields."; }
if(WithoutContent(document.form1.name2.value))
	{ errormessage += "\n\nPlease enter your two names in the required fields."; }
//if(WithoutContent(document.form1.imgverify.value))
//	{ errormessage += "\n\nYou must enter the characters you see in the image at the bottom of the form into //the field to the right of the image."; }

if(errormessage.length > 2) {
	alert('REQUIRED FIELD:' + errormessage);
	return false;
	}
return true;
} // end of function CheckRequiredFields()


function WithoutContent(ss) {
if(ss.length > 0) { return false; }
return true;
}

