function test_login(form)
	{
	if (document.getElementById("p[email_login]").value == "")
		{
		document.getElementById("check_login").innerHTML = "<font color=red>не введен E-mail</font>"
		document.getElementById("p[email_login]").focus();
		return false;
		}
	if (document.getElementById("p[password_login]").value == "")
		{
		document.getElementById("check_login").innerHTML = "<font color=red>не введен пароль</font>";
		document.getElementById("p[password_login]").focus();
		return false;
		}
	return true;
	}

