YAY! Thanks
Also for the quick reply, you rule. And youre the reason ive chosen to stay around at this website and not any other. 
Final solution:
Code:
<script language="javascript">
function checkAge()
{
/* the minumum age you want to allow in */
var min_age = 16;
/* change "age_form" to whatever your form has for a name="..." */
var year = parseInt(document.forms["age_form"]["year"].value);
var month = parseInt(document.forms["age_form"]["month"].value);
var day = parseInt(document.forms["age_form"]["day"].value);
var theirDate = new Date((year + min_age), month, day);
var today = new Date;
if (month == 0){
alert("..and your month is?");
return false;
}
if (day == 0){
alert("Your birthday is still missing!");
return false;
}
if ( (today.getTime() - theirDate.getTime()) < 0) {
alert("Youre too young, to visit us.");
return false;
}
else {
return true;
}
}
</script>
Bookmarks