function validateLogin()
{
	if ((document.userLogin.user.value=="") || (document.userLogin.pass.value==""))
        {
		alert ("Please fill out your username and password");;
                return(false);
        }
	
	sButton = document.getElementById('loginButton');
	sButton.value = "Processing...";
	sButton.disable = true;
}

