function FormSend(){
	
	var sentForm = document.getElementById("contactForm");
	var errors = "Please check the following fields:\n";
	var send = true;
	
	if(sentForm.namefield.value.length == 0){
		send = false;
		errors = errors + "Name\n";
	}
	if(sentForm.email.value.length == 0){
		send = false;
		errors = errors + "Email\n";
	}
		
	if(sentForm.info.checked == true && sentForm.address.value.length == 0 && sentForm.email.value.length == 0){
		send = false;
		errors = errors + "\nTo Recieve information about our services, you must provide a postal or email address.\n";
	}
	if(sentForm.call.checked == true && sentForm.phone.value.length == 0){
		send = false;
		errors = errors + "\nTo Recieve a call, you must provide a phone number.\n";
	}
	if(send){
		sentForm.submit();
	}else{
		alert(errors);
	}
}
