function confirm_age(x)
{
	var ok;
	
	ok = check_form(x)
	if (ok)
		{
		if (x.Legal_Age.checked == false)
			{
			alert('Please confirm that you are over 18.')
			x.Legal_Age.focus()
			ok = false
			}
		}
			
	return ok;
}
