<!--
function formValidation(form){
	if(notChecked(form.agree)){if(notEmpty(form.first)){if(notEmpty(form.last)){if(notEmpty(form.email)){
					return true;
		}
	}
	}
	}
	return false;
}

function notEmpty(elem){
	var str = elem.value;
	if(str.length == 0){
		alert("All fields are required.");
		return false;
	} else {
		return true;
	}
}

function notChecked(elem){
	var str = elem.checked;
	if(str == false){
		alert("You must accept the license agreement to continue.");
		return false;
	} else {
		return true;
	}
}
//-->
