function abrirPag(valor,codigo){   
var url = valor;   
var id = codigo  
xmlRequest.open("GET",url,true);   
xmlRequest.onreadystatechange = mudancaEstado;   
xmlRequest.send(null);   
  
if (xmlRequest.readyState == 1) {   
document.getElementById("conteudo_mostrar"+codigo).innerHTML = "<img src='imagens/carregando.gif'>";   
}   
 function mudancaEstado(){   
if (xmlRequest.readyState == 4){   
document.getElementById("conteudo_mostrar"+id).innerHTML = xmlRequest.responseText;   
}   
}   
return url;   
}   
  
