function validate_help_form ( )
{valid = true;
	if (!(/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/).test(document.help_form.email.value))
		{alert("Enter a valid 'Email Address' ")
			valid = false;
		}   
	if (document.help_form.message.value == "" )
		{alert ("Describe what you need help with ");
			valid = false;
		}
	return valid;
}

