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

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


		if ((check1ok=='') && (check2ok=='') && (check3ok==''))
		 	{
		 	document.formular.submit();
		  	}
		else
		 	{
		 	daten=check1ok+check2ok+check3ok;
		 	komma = daten.lastIndexOf(",");
       	 	ausgabe="Bitte tragen Sie ein: "+daten.substr(0,komma)+"."+"\n";
		 	alert(ausgabe);
		 }

		}


function login()
		{
		check1=document.formular.benutzer.value;
		check2=document.formular.pwd.value;
		check1ok="Benuztername, ";
                check2ok="Passwort, ";

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


		if ((check1ok=='') && (check2ok==''))
		 	{
		 	document.formular.submit();
		  	}
		else
		 	{
		 	daten=check1ok+check2ok;
		 	komma = daten.lastIndexOf(",");
       	 	ausgabe="Bitte tragen Sie ein: "+daten.substr(0,komma)+"."+"\n";
		 	alert(ausgabe);
		 }

		}

