function checkMe()
{
	
	if (document.form.areYou18.checked == false) {
		alert("You have not verified that you are at least 18 Years Old.");
	} else
	{
		submitMe();
	}
}
function submitMe()
{
	 document.form.submit();
}