<!--
FORMUL="email";

function check()
{
STOPP=0;
var a=0;

for (a=0; a<6; a++)
	{
	Eingabe=window.document.forms[0].elements[a].value;

	if (Eingabe!="")
		{
		FELD=a;
		if (a!=4) check_NAME(); 
		else check_PLZ();
		if (STOPP==1) return false;
		}
	}

for (a=6; a<8; a++)
	{
	Eingabe=window.document.forms[0].elements[a].value;
	if (Eingabe!="")
		{
		FELD=a;
		if (a==6) check_MAIL(); 
		if (STOPP==1) return false;
		}

	else
		{
		alert ("Bitte mindestens die eigene eMail-Adresse und eine Mitteilung eingeben!");
		window.document.forms[0].elements[a].value="";
		window.document.forms[0].elements[a].focus();
		return false;
		}
	}
}

function Aktualisieren(feld)
{
var Z = 1500;

var anz = feld.value.length;
if (anz > Z )
	{
  	feld.value = feld.value.substring(0,Z);
  	frei = 0;
	}
else
	{
  	frei = Z-anz;
	}

var freiWORT = "freie";
if (frei==1) freiWORT="freies";
document.forms[0].Zeichen.value = "["+frei+" "+freiWORT+" Zeichen]";
}

//-->
