function checkAge(thisForm){	ageOption = -1;	for (i=thisForm.ageValue.length-1; i > -1; i--) {		if (thisForm.ageValue[i].checked) {			ageOption = i; i = -1;		}	}	if (ageOption == -1) {		alert("Please Select an Option");		return false;	}	if(ageOption == 0){		this.location.href = "home.php";	}	if(ageOption == 1){		this.location.href = "underage.php";	}};
