	function mostraNoticia(id){
		pagina  = 1;
		if(id == null){id  = "0";}
		AjaxRequest();
		if(!Ajax) {
			alert("Erro na chamada do AJAX, seu navegador não oferece suporte á AJAX");
			return;
		}
		Ajax.onreadystatechange = carregaNoticia;
		//alert('includes/conteudo.php?conteudo=s&p=n&a=n&id=' + id + "&idioma=" + idioma);
		Ajax.open('GET', 'includes/conteudo.php?conteudo=s&p=n&a=n&id=' + id + "&idioma=" + idioma, true);
		Ajax.send(null);
	}
	function carregaNoticia(){
		if (Ajax.readyState == 4) {
			if (Ajax.status == 200) {
				//alert(Ajax.responseText);
				montaNoticia(Ajax.responseXML);
			} else {
				document.getElementById("conteudo").innerHTML = '[Erro no Servidor]';
			}
		}else{
			document.getElementById("conteudo").innerHTML = carregando();
		}
	}
	function montaNoticia(xmlDoc){
		var formaNoticia = document.getElementById("conteudo");
			formaNoticia.innerHTML = "";
		var htmlFinal 	= "";
		var titulo    	= "";
		var texto    	= "ERRO";
		var data  		= "";
		var fotos  		= "";
		if(xmlDoc.hasChildNodes()) {
			if(navigator.appName == "Microsoft Internet Explorer"){
				titulo    	= xmlDoc.childNodes[1].childNodes[0].firstChild.nodeValue;
				texto    	= xmlDoc.childNodes[1].childNodes[1].firstChild.nodeValue;
				data  		= xmlDoc.childNodes[1].childNodes[2].firstChild.nodeValue;
				fotos  		= xmlDoc.childNodes[1].childNodes[3].firstChild.nodeValue;
				paginacao  	= xmlDoc.childNodes[1].childNodes[4].firstChild.nodeValue;
			}else{
				titulo    	= xmlDoc.childNodes[0].childNodes[0].firstChild.nodeValue;
				texto    	= xmlDoc.childNodes[0].childNodes[1].firstChild.nodeValue;
				data  		= xmlDoc.childNodes[0].childNodes[2].firstChild.nodeValue;
				fotos  		= xmlDoc.childNodes[0].childNodes[3].firstChild.nodeValue;
				paginacao  	= xmlDoc.childNodes[0].childNodes[4].firstChild.nodeValue;
			}
		}
		htmlFinal += "\n \t <table>";
		htmlFinal += "\n \t \t <tr>";
		htmlFinal += "\n \t \t \t <td><img src=\"images/noticias/barraNews_" + idioma + ".jpg\"></td>";
		htmlFinal += "\n \t \t </tr>";
		htmlFinal += "\n \t \t <tr>";
		htmlFinal += "\n \t \t \t <td>";
		htmlFinal += "\n \t \t \t \t <span class=\"noticias_titulo\" style=\"font-size:12px;font-weight: bold;\"> " + titulo + " </span>";
		htmlFinal += "\n \t \t \t \t <br>";
		htmlFinal += "\n \t \t \t \t <table class=\"paddingT30\">";
		htmlFinal += "\n \t \t \t \t \t <tr>";
		htmlFinal += "\n \t \t \t \t \t \t <td  valign='top'>";
		htmlFinal += "\n \t \t \t \t \t \t \t " + fotos + "";
		htmlFinal += "\n \t \t \t \t \t \t </td>";
		htmlFinal += "\n \t \t \t \t \t \t <td style='font-size:11px;line-height:16px;' valign='top'>";
		htmlFinal += "\n \t \t \t \t \t \t \t <div class=\"noticias_texto\">";
		htmlFinal += "\n \t \t \t \t \t \t \t \t " + texto + "";
		htmlFinal += "\n \t \t \t \t \t \t \t </div>";
		htmlFinal += "\n \t \t \t \t \t \t </td>";
		htmlFinal += "\n \t \t \t \t \t </tr>";
		htmlFinal += "\n \t \t \t \t </table>";
		htmlFinal += "\n \t \t \t </td>";
		htmlFinal += "\n \t \t </tr>";
		htmlFinal += "\n \t \t <tr>";
		htmlFinal += "\n \t \t \t <td>";
		htmlFinal += "\n \t \t \t \t <div class=\"paddingT30.1\">  " + data + " </div>";
		htmlFinal += "\n \t \t \t </td>";
		htmlFinal += "\n \t \t </tr>";
		htmlFinal += "\n \t \t <tr>";
		htmlFinal += "\n \t \t \t <td align=\"right\">";
		htmlFinal += "\n \t \t \t \t <div class=\"paddingT30\">" + paginacao + "</div>";
		htmlFinal += "\n \t \t \t </td>";
		htmlFinal += "\n \t \t </tr>";
		htmlFinal += "\n \t </table>";
		formaNoticia.innerHTML = htmlFinal;
		fadeMeio();
	}
