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

