function chkFrm(){
	var u=document.fLogin.usuario.value;
	var p=document.fLogin.password.value;
	if(u==""){
		alert("Por favor, ingrese un nombre de usuario");
		return false;
	}
	if(p==""){
		alert("Por favor, ingrese un password");
		return false;
	}
	return true;
}

