function xmlhttpLoadLeiaTambem(url){
if (window.XMLHttpRequest) {
	xmlhttp_leiatb = new XMLHttpRequest();
} else if (window.ActiveXObject) {
	xmlhttp_leiatb = new ActiveXObject("Microsoft.XMLHTTP")
}
if (xmlhttp_leiatb) {
	xmlhttp_leiatb.onreadystatechange = xmlhttpChange_leiatb;
	xmlhttp_leiatb.open("GET", url, true);
	xmlhttp_leiatb.send(null);
}
}
function xmlhttpChange_leiatb() {
    if (xmlhttp_leiatb.readyState==4) {
        if (xmlhttp_leiatb.status==200) {
            document.getElementById('leiatambem').innerHTML=xmlhttp_leiatb.responseText;
        } else {
            document.getElementById('leiatambem').innerHTML="Não foi possível carregar os dados do Leia também.";
        }
    }
}