// JavaScript Document

<!--

function checkform ( form ) {
	form.Name.style.backgroundColor="";
	form.Telefon.style.backgroundColor="";
	form.Email.style.backgroundColor="";
	form.Anfrage.style.backgroundColor="";

// ** START **

	if (form.Name.value == "") {
		alert( "Bitte geben Sie Ihren Namen an." );
		form.Name.style.backgroundColor="#ea2601";
		form.Name.focus();
		return false ;
	}

	if (form.Telefon.value == "") {
		alert( "Bitte geben Sie Ihre Telefonnummer an." );
		form.Telefon.style.backgroundColor="#ea2601";
		form.Telefon.focus();
		return false ;
	}

	if (form.Email.value == "") {
		alert( "Bitte geben Sie Ihre Email-Adresse an." );
		form.Email.style.backgroundColor="#ea2601";
		form.Email.focus();
		return false ;
	}
	
	if (form.Anfrage.value == "") {

	    alert( "Bitte füllen Sie das Anfragefeld aus." );
		form.Anfrage.style.backgroundColor="#ea2601";
		form.Anfrage.focus();
		return false ;
	}

// ** END **

return true ;

}

//-->
