try{
	xmlhttp = new XMLHttpRequest();
}
catch(ee){
	try{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e){
		try{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}

		catch(E){
			xmlhttp = false;
		}
	}
}

function abre(arquivo,metodo){
	xmlhttp.open(metodo,arquivo);
	xmlhttp.onreadystatechange=conteudo
	xmlhttp.send(null)
}

function conteudo() {
	document.getElementById('conteudo').innerHTML="carregando...";
	if (xmlhttp.readyState==4){
		document.getElementById('conteudo').innerHTML=xmlhttp.responseText
	}
}