function Validate(form) {
	if(confirm('You must be 21 or older to proceed. By clicking OK you are confirming that you are of legal drinking age and that you have read and agree to our policies.'))
		form.submit();
	return 0;
}
