function login_check(form)
{
	if( !(form.login.value && form.password.value) )
	{
		alert('Enter username, password');
		return false;
	}
}
