
function ageCheck() {
  var date1 = document.getElementById('month').value + "-" + document.getElementById('day').value + "-" + document.getElementById('year').value;
  date1 = date1.split("-");
  var sDate = new Date(date1[0]+"/"+date1[1]+"/"+date1[2]);
  var eDate = new Date();
  var daysApart = Math.abs(Math.round((sDate-eDate)/86400000));
  if (daysApart > 4740) {
	return true; 
  } else {
	alert("Children under the age of 13 may not register, use, or login to this site.  If you have made a mistake, please correct your birthdate.  If not, and you are under the age of 13, you MAY NOT register for this site.  Under the penalty of perjury, you acknowledge that the birthdate you entered is correct.  Anyone found with an account that is under 13 years of age will be deleted.");
	return false; 
  }
}