function checkTerms(){
	
	theForm = window.document.frmCheck;
	theForm2 = window.document.frmCart;
	
	if(document.frmCart.terms.checked){
		if ( isEmpty(theForm2.delChoose, 'Select Delivery Location')){
			return false;
		} else {
			theForm.submit();
		}
	}else {
		alert("You must click to accept the Terms and Conditions of trade to continue");
		return false;
	}
}

