<!--

function validateContact(frm){

	with(frm){

		if (isMissing(name, "Please enter your name"))
			return false;

		//if (email.value.length > 0){
		//} // end if

		if (isMissing(email, "Email address required"))
			return false;

		if (badEmail(email)){
			return false;
		} // end if

		if (isMissing(body, "A message is required"))
			return false;

	} // end with

	return true;

} // end validateContact

// -->
