				function check_form(theform)
				{
					if (theform.email.value=="")
					{
						alert ("You must enter your email address.")
						return (false)
					}
					if (theform.first_name.value=="")
					{
						alert ("You must enter your first name.")
						return (false)
					}
					return (true)
				}
