function submitForm() {
	theForm = document.form1;
	document.getElementById("adresse").style.backgroundColor = "#FFFFFF";
	document.getElementById("name").style.backgroundColor = "#FFFFFF";	
	document.getElementById("ort").style.backgroundColor = "#FFFFFF";	
	document.getElementById("land").style.backgroundColor = "#FFFFFF";	
	document.getElementById("email").style.backgroundColor = "#FFFFFF";						 
	if(theForm.name.value=='') {
			 document.getElementById("name").style.backgroundColor = "#CEEFEF";			 
			 theForm.name.focus();
			 	return false;
	}
	
	if(theForm.adresse.value=='') {
			 document.getElementById("adresse").style.backgroundColor = "#CEEFEF";			 
			 theForm.adresse.focus();
			 	return false;
	}
	
	if(theForm.ort.value=='') {
			 document.getElementById("ort").style.backgroundColor = "#CEEFEF";			 
			 theForm.ort.focus();
			 	return false;
	}
	
	if(theForm.land.value=='') {
			 document.getElementById("land").style.backgroundColor = "#CEEFEF";			 
			 theForm.land.focus();
			 	return false;
	}
	
	if(theForm.email.value=='') {
			 document.getElementById("email").style.backgroundColor = "#CEEFEF";			 
			 theForm.email.focus();
			 	return false;
	}	
	
	theForm.submit();
	

	
}

