function submitIt() {
	
	var d = document.forms[0];

	if ( !d.TOS.checked ) {
	alert("You must agree to our Terms of Service to obtain service.");
	return false;
	}
	if ( !d.AUP.checked ) {
	alert("You must agree to our Acceptable Use Policy to obtain service.");
	return false;
	}
		if ( !d.Y18.checked ) {
	alert("You must be 18 years of age or over to apply for service.");
	return false;
	}

	//d.submit();
	return true;

}	