function validateForm()
{
	var email = document.theForm.email.value;
	if ( email.length < 1 )
	{
		alert("What's your name, champ?");
		document.theForm.email.focus();
		return false;
	}
	var body = document.theForm.body.value;
	if ( body.length <1 )
	{
		alert("-If you're gonna ask Sammy a question, you gotta ask him a fucking question");
		document.theForm.body.focus();
		return false;
	}
		
	return true;
}
