function senden()
		{
		check1=document.formular.Nachname.value;
		check2=document.formular.Telefon.value;
		check3=document.formular.Mitteilungen.value;
		check1ok="Nachname, ";
                check2ok="Telefon, ";
                check3ok="Nachricht, ";

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


		if ((check1ok=='') && (check2ok=='') && (check3ok==''))
		 	{
		 	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;
		 	komma = daten.lastIndexOf(",");
       	 	ausgabe="Bitte tragen Sie ein: "+daten.substr(0,komma)+"."+"\n";
		 	alert(ausgabe);
		 	return false;
		 }

		}




