//ensure the customer has ticked the terms and conditions box

function checkTerms (checked) {
	var errorMsg = "The following errors have occurred:- \n ";	
	var returnCase = true;
	//alert(checked);
	if(!checked) {
		alert("you must agree to our terms and conditions before proceeding");
		returnCase = false;
	}
	return returnCase;
}