function isFeldvollnorm() {

	if (document.Email.Name.value == "")

		var Name = "- Name"

	if (document.Email.Name.value != "")

		var Name = ""

	if (document.Email.Firma.value == "")

		var Firma = "- Firma"

	if (document.Email.Firma.value != "")

		var Firma = ""

	if (document.Email.Telefon.value == "")

		var Tele = "- Telefon"

	if (document.Email.Telefon.value != "")

		var Tele = ""
		
			if (document.Email.email.value == "")

		var email = "- E-mail"

	if (document.Email.email.value != "")

		var email = ""


{

alert("Bitte fuellen Sie noch folgende Felder aus, damit wir mit Ihnen Kontakt aufnehmen koennen:\n" + Name + "\n" + Firma + "\n" + Tele + "\n" + email);

	if (document.Email.Name.value == "")

		document.Email.Name.focus();

			else if (document.Email.Firma.value == "")

			document.Email.Firma.focus();

			else 	if (document.Email.Telefon.value == "")

			          document.Email.Telefon.focus();
			          else 	if (document.Email.email.value == "")

			          document.Email.email.focus();

						return false;

}

}



function testimonia() {

	if((document.Email.Name.value != "") && (document.Email.Firma.value != "") && (document.Email.Telefon.value != "") && (document.Email.email.value != ""))

{
			return true;

}

		else

{

	isFeldvollnorm();

	return false;

}

}
