function openAjax() { 
var Ajax; 
try {
Ajax = new XMLHttpRequest(); // XMLHttpRequest para browsers mais populares, como: Firefox, Safari, dentre outros. 
}catch(ee){ 
try {
Ajax = new ActiveXObject(" Msxml2.XMLHTTP"); // Para o IE da MS 
}catch(e){ 
try {
Ajax = new ActiveXObject("Microsoft.XMLHTTP"); // Para o IE da MS 
}catch(e){
Ajax = false; 
} 
} 
} 
return Ajax; 
} 

function mostraConteudo3(valor){
	Ajax_3 = openAjax();
	Ajax_3.onreadystatechange = vai3;
	Ajax_3.open("GET", valor, true);
	Ajax_3.send(null);
}

function vai3(){
    if (Ajax_3.readyState == 4){
        if (Ajax_3.status == 200){
			document.getElementById("conteudo3").innerHTML = Ajax_3.responseText;
		}else{
            alert("Houve um problema ao obter os dados:\n" + Ajax_3.statusText);
        }
    }
}

