function senden()
		{
		check1=document.formular.Vorname.value;
		check2=document.formular.Nachname.value;
		check3=document.formular.Strasse.value;
		check4=document.formular.PLZ_ORT.value;
		check1ok="Vorname, ";
		check2ok="Nachname, ";
                check3ok="Straße, ";
                check4ok="PLZ/Ort, ";

        if (!(check1==''))
		 	{
		 	check1ok='';
		 	}


		if (!(check2==''))
		 	{
		 	check2ok='';
		 	}
           	if (!(check3==''))
		 	{
		 	check3ok='';
		 	}

                if (!(check4==''))
		 	{
		 	check4ok='';
		 	}

		if ((check1ok=='') && (check2ok=='') && (check3ok=='') && (check4ok==''))
		 	{
		 	document.formular.realname.value=document.formular.Vorname.value+" "+document.formular.Nachname.value;
		  	document.formular.email.value=document.formular.Email.value;
		  	return true;
		  	}
		else
		 	{
		 	daten=check1ok+check2ok+check3ok+check4ok;
		 	komma = daten.lastIndexOf(",");
       	 	ausgabe="Bitte tragen Sie ein: "+daten.substr(0,komma)+".";
		 	alert(ausgabe);
		 	return false;
		 }

		}



function bnfsenden()
		{
		check1=document.formular.Name.value;
                check2=document.formular.Strasse.value;
		check3=document.formular.PLZ.value;
                check4=document.formular.Ort.value;
                check5=document.formular.Telefon.value;
                check6=document.formular.Email.value;
                check7=document.formular.Teilnahmebedingungen.checked;
		check1ok="Name, ";
		check2ok="Straße, ";
                 check3ok="PLZ, ";
                 check4ok="Ort, ";
                 check5ok="Telefon, ";
                 check6ok="E-Mail, ";



        if (!(check1==''))
		 	{
		 	check1ok='';
		 	}

        if (!(check2==''))
		 	{
		 	check2ok='';
		 	}

	if (!(check3==''))
		 	{
		 	check3ok='';
		 	}

        if (!(check4==''))
		 	{
		 	check4ok='';
		 	}

        if (!(check5==''))
		 	{
		 	check5ok='';
		 	}

        if (!(check6==''))
		 	{
		 	check6ok='';
		 	}


	if ((check1ok=='') && (check2ok=='') && (check3ok=='') && (check4ok=='') && (check5ok=='') && (check6ok==''))
		 	{
		 	if (check7==true)
		 		{
		 		document.formular.realname.value=document.formular.Name.value;
		  		document.formular.email.value=document.formular.Email.value;
		  		return true;
		  		}
		  	else 	{
		  		ausgabe="Bitte bestätigen Sie die Teilnahme- und Zahlungsbedingungen.";
		 		alert(ausgabe);
		 		return false;

		  		}
		  	}
		else
		 	{
		 	daten=check1ok+check2ok+check3ok+check4ok+check5ok+check6ok;
		 	komma = daten.lastIndexOf(",");
       	 		ausgabe="Bitte tragen Sie ein: "+daten.substr(0,komma)+".";
		 	alert(ausgabe);
		 	return false;

		 	}

		}


