var notAgreeable = 'You must agree to the Terms and Conditions to proceed with payment';


function agreed(th) {
	e = document.getElementById('agree');
	if (e.checked==true) {
	 	return EJEJC_lc(th);
	 } else {
		alert(notAgreeable);
		return false;		
	}	
}
