function validateForm (formName) {
	if (formName.Email.value == '') {
		alert ('Please provide your e-mail address so that we may contact you.');
		formName.Email.select();
		formName.Email.focus();
		return false;
		}
	if (formName.Email.value.indexOf('@') == -1) {
		alert ('Please provide a properly formatted e-mail address so that we may contact you.');
		formName.Email.select();
		formName.Email.focus();
		return false;
		}
	if (formName.HIP.value.toLowerCase() != 'szm72waj') {
		alert ('Help us stop spam. Please type the letters you see in the image into the box.');
		formName.HIP.select();
		formName.HIP.focus();
		return false;
		}
}
