function checkForm(that){
	var msg;
	var count=0;
	
	if(that.name.value == "" || that.name.value.length <= 5){
		that.name.style.background = "#FF0000";
		count++;
	}else{
		that.name.style.background = "#F7F7F7";
	}
	
	if(that.email.value == "" || that.email.value.length <= 5){
		that.email.style.background = "#FF0000";
		count++;
	}else{
		if(emailValid(that.email) == true){
			that.email.style.background = "#F7F7F7";
		}else{
			that.email.style.background = "#FF0000";
			count++;
		}
	}
	
	if(that.phone.value == "" || that.phone.value.length <= 9){
		that.phone.style.background = "#FF0000";
		count++;
	}else{
		that.phone.style.background = "#F7F7F7";
	}
	
	
	if(that.course1.checked == false && that.course2.checked == false){
		document.getElementById("noneChecked").style.display = "";
		document.getElementById("noneChecked").innerHTML = "Please select at least one course to receive info about.";
		count++;
	}else{
		document.getElementById("noneChecked").style.display = "none";
		document.getElementById("noneChecked").innerHTML = "";
	}
	
	if(count >= 1){
		msg = false;
	}else{
		msg = true;
	}
	
	return msg;
}
