// **********************************************************************************************************************************************
function notEmpty(elem)
{
	var str = elem.value;
	
	if(str.length == 0)
	{
		alert("Bitte alle mit (*) gekennzeichneten Felder ausfüllen!");
		return false;
	} 
	else 
	{
		return true;
	}
}

function check_registrieren_empty(form)
{
	if(notEmpty(form.vorname) && notEmpty(form.nachname) && notEmpty(form.adresse1) && notEmpty(form.plz) && notEmpty(form.ort)	&& notEmpty(form.land) && notEmpty(form.telefon) && notEmpty(form.email) && notEmpty(form.passwort_eins) && notEmpty(form.passwort_zwei))
	{
		return true;
	}
	else
	{
		return false;
	}
}

// **********************************************************************************************************************************************

