function checkBoxes(){
	var termselembox = document.getElementById("termsbox");
	
	if(termselembox.checked == true){
		return true;
	}else{
		alert("Please read our Terms of Service and check the box to order!");
		return false;
	}
}

function checkBoxes2(){
	var motorelembox = document.getElementById("motorbox");
	
	if(motorelembox.checked == true){
		return true;
	}else{
		alert("Please read our Terms of Service and check the box to order!");
		return false;
	}
}
function checkBoxes3(){
	var termselembox = document.getElementById("termsbox");
	var motorelembox = document.getElementById("motorbox");
	
	if(termselembox.checked == true && motorelembox.checked == true){
		return true;
	}else{
		alert("Please read our Terms of Service and check both boxes to order!");
		return false;
	}

}