function validateSuggest(theForm) {
	if(theForm.name.value == "") {
		alert("Please enter your name.");
		theForm.name.focus();
		return;
	} else if(!getEmailIsValid(theForm.email.value)) {
		alert("Sorry, the email address is invalid, please enter again.");
		theForm.email.focus();
		return;
	} else if(theForm.idea.value == "") {
		alert("Please enter your game idea.");
		theForm.idea.focus();
		return;
	} else if(!theForm.terms.checked) {
		alert("Please read the terms carefully and check the \"I accept\" box.");
		return;
	}
  
	theForm.submit();
}