Javascript

Eae galera,
estou tentando implementar uma página web dinâmica (Index.html) para carregar outras páginas em uma

através de um menu. O problema é que estou usando um script que funciona no firefox, porém não funciona no IE.
segue abaixo os códigos usados:

ajax.js

[code]function GetXMLHttp() {

if(navigator.appName == "Microsoft Internet Explorer") {

    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");

}

else {

    xmlHttp = new XMLHttpRequest();

}

return xmlHttp;

}

var xmlRequest = GetXMLHttp();[/code]
instrucao.js

[code]function abrirPag(valor){

var url = valor;


xmlRequest.onreadystatechange = mudancaEstado;

xmlRequest.open("GET",url,true);

xmlRequest.send(null);


if (xmlRequest.readyState == 1) {

	document.getElementById("conteudo_mostrar").innerHTML = "<img src='loader.gif'>";

}


return url;

}

function mudancaEstado(){

if (xmlRequest.readyState == 4){

document.getElementById(“conteudo_mostrar”).innerHTML = xmlRequest.responseText;

}

}[/code]
alguém pode me ajudar com uma solução? eu pesquisei na net e vi que tem um problema com a função getElementById(), mas não sei se é este o caso. até breve :slight_smile:

use jQuery … vai poupar muito trabalho …

Em que linha está dando o erro?