//prüfen ob city leer ist
function checkInputLogin()
{
var fehler = "";
var TF = document.forms.login;
//E-Mail
if(TF.login_l_mail.value == "")
{
fehler += "1";
//document.getElementById('login_l_mail').className = 'login_input error';
}
//if(TF.login_l_mail.value != "")
//{
//document.getElementById('login_l_mail').className = 'login_input';
//}
//Password
if(TF.login_l_password.value == "")
{
fehler += "1";
document.getElementById('login_l_password').className = 'login_input';
}
//if(TF.login_l_password.value != "")
//{
//document.getElementById('login_l_password').className = 'login_input error';
//}
//ende
if (fehler != ""){
return false;
}
	if (fehler == ""){
	return true;
	}
}
//


