function validateMyForm()
{
	// check to see if a human has done this
	if (Clicked>=0)
	{
		// probably not a person
		alert ("You do not appear to be human.  Go away");
		return;
	}

	var frm = document.form_001;

	// check for blanks
	if (noBlankAllowed(frm.realname,'Name')) return;
	if (noBlankAllowed(frm.email,'E-Mail Address')) return;

	// do other validations
	if (validateEmail(frm.email)) return;

	// submit the form all is good
	frm.submit();
	return;
}
