function acousticAgreement(f) {
	// Customer must agree to the terms by checking the checkbox.
	var check = f.acoustic_agreement.checked;
	if (check != true) {
		alert("You must agree to the terms and check the checkbox\nbefore purchasing acoustic foam.");
		return false;
	}
	return true;
}

