function tiraEspaco(texto){
	while(texto.indexOf(" ") != -1){
	  texto = texto.replace(" ","");
	}
    return texto;
}

function setFocus() {
	document.getElementById("login").focus();
}
function submeterLogin(){
	if(tiraEspaco(document.getElementById("login").value) == ""){	
		alert("Usuário inválido.");
		document.getElementById("login").focus();
		return false;
	}
	if(tiraEspaco(document.getElementById("senha").value) == ""){	
		alert("Senha inválida.");
		document.getElementById("senha").focus();
		return false;
	}
	document.getElementById("loginForm").submit();
}
