function VerifyPetiton() {
	if (document.petition.name.value=='') {
		alert('Please enter your name!');
		return false;
	}
	var check = document.petition.email.value.indexOf('@');
	if (document.petition.email.value=='' || check==-1) {
		alert('Please enter a valid email address!');
		return false;
	}
	if (document.petition.city.value=='') {
		alert('Please enter your location!');
		return false;
	}
	if (document.petition.comment2.value=='') {
		alert('Please enter a brief comment!');
		return false;
	}
	alert('Thank you for signing the\npetition to bring the Megaplier\nto all Mega Millions players.\n\nWe also encourage you to contact\nyour state lottery directly\nto voice your opinion!');
	return true;
}
