function validateBDAY() {
	var currentMonth, currentDay, currentYear;
	var now = new Date();
	var birthYear = Math.round(document.getElementById("year").value);
	var birthMonth = Math.round(document.getElementById("month").value);
	var birthDay = Math.round(document.getElementById("day").value);
	var OfAgeAt = birthYear + 21;
	currentMonth = now.getMonth() + 1; //Offset the 0 index
	currentDay = now.getDate();
	currentYear = now.getFullYear();

	if(birthMonth == 0) {
		alert("Select the month of your birth.");
		return false;
	}

	if(birthDay == 0) {
		alert("Select the day of your birth.");
		return false;
	}

	if(birthYear == 0) {
		alert("Enter the year of your birth.");
		return false;
	}

	//Check the year vs. the year they turn 21
	if(currentYear >= OfAgeAt) {
		//Older than 21 skip other tests
		if(currentYear > OfAgeAt) {
			return true;
		} else {
			//Is the month greater than the birth month
			if(currentMonth > birthMonth) {
				//Do nothing
			}
			//Is the month equal to the birth month
			if(currentMonth == birthMonth) {
				//Current month matches birth month
				//Is the day less than their bday
				if(currentDay < birthDay) {
				alert("You are under 21 years of age and should not enter this website.");
				return false;
				}
			}
		}
	} else {
		//Doesn't meet the year requirement
		alert("You are under 21 years of age and should not enter this website.");
		return false;
	}
//Pass all the tests good job!
return true;
}