//prüfen ob city leer ist
function checkInputLoginReg()
{
var fehler = "";
var TF = document.forms.login02;
//E-Mail
if(TF.login2_l_mail.value == "")
{
fehler += "1";
document.getElementById('login2_l_mail').className = 'w30 inputselect error';
}
if(TF.login2_l_mail.value != "")
{
document.getElementById('login2_l_mail').className = 'w30 inputselect mandatory';
}
//Password
if(TF.login2_l_password.value == "")
{
fehler += "1";
document.getElementById('login2_l_password').className = 'w30 inputselect error';
}
if(TF.login2_l_password.value != "")
{
document.getElementById('login2_l_password').className = 'w30 inputselect mandatory';
}
//ende
if (fehler != ""){
return false;
}
	if (fehler == ""){
	return true;
	}
}
//



