Bueno ya solcione el tema definitvamente, lo de qeu no actualizara era cosa de como iniciaba el AJAX, por lo que lo he modificado y todo rula perfectamente, aqui esta el ajax.js modificado:
Código:
function iniciar() {
try {
aopen = new XMLHttpRequest();
} catch (e) {
try {
aopen = new ActiveXObject("Msxml2.XMLHTTP");
} catch (E) {
try
{
aopen = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
aopen = false;
}
}
}
return aopen;
}
function validaradmin(forma) {
var ajax=iniciar();
var error, user, pass;
user = "";
pass = "";
error = document.getElementById("ero");
user = document.getElementById("asunto").value;
pass = document.getElementById("passw").value;
ajax.open("GET", "Admin/Log/identificar.php?user="+user+"&password="+pass, true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
if(ajax.status==200)
{
if(ajax.responseText == 'No')
{
error.innerHTML = "Identificació incorrecte";
}
else
{
error.innerHTML = "Identificació correcte";
}
}
}
}
ajax.send(null);
}