function Login(form)
{

	var login = document.getElementById("login").value;

	var password = document.getElementById("password").value;


	if (!(login && password))
	{
		alert("You must enter both your login and password.");

	}
}

function TheFocus()
{
    document.getElementById("login").focus();
}
