var flag = 0;

function CheckBox() {

	flag = 1;
}

function submitIt(carForm) {


	if (flag == "0") {

		alert("Please read the acknowledgement and check for the agree box.");
		carForm.agree.focus();
		carForm.agree.select();
		return false;
	}
}
