function checkme() {
	missinginfo = "";
	if (!document.agreement.agree.checked) {
		missinginfo += "\n - You must agree to the terms";
	} 
	if (missinginfo != "") {
		missinginfo ="Please confirm your agreement to the terms by checking the box..!";
		
		alert(missinginfo);
		return false;
		}
		else { 
		return true;
	}
}

