	var xmlhttp = null;
	function getSite(url){
		
		//Exibe o texto carregando no div conteúdo
    	var conteudo=document.getElementById("historiaAnos")
		conteudo.innerHTML = '<div style="padding:60px 0 0 235px; color:#F3E015">Carregando...</div>'
		
		try{
    		xmlhttp = new XMLHttpRequest(); // instância do objeto XMLHttpRequest
		}
		catch(ee){
   			try{
        		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); // Em caso negativo, Verifica se existe o objeto no IE 6
			}
    		catch(e){
        		try{
            		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); // Em caso negativo, solicita primeiro objeto implementado pela Microsoft no IE 5
        		}
        		catch(E){
            		xmlhttp = null;
        		}
    		}
		}
		
		xmlhttp.open("GET", url, true);
		xmlhttp.onreadystatechange = TrataResposta;
		xmlhttp.send(null);
	
	}
	
	function TrataResposta(){
    	if ( xmlhttp.readyState == 4) {
     		if ( xmlhttp.status == 200) {
       			var respostaServidor = xmlhttp.responseText;
				var divSite = document.getElementById("historiaAnos");
				divSite.innerHTML = respostaServidor;
    		 }
     		else{
       			alert( "Problema: " + xmlhttp.statusText );
     		}
  		 }
	}