//############################################################################################################################
//# Autor: Flávio Caio Ferreira Bruschi                                                                                      #
//# e-mail: flavio@makex.com.br                                                                                              #
//############################################################################################################################
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 gotoURL(url,id){ //preenche os campos automaticamente
	MM_showHideLayers('loading','','show');	
	xmlhttp.open("GET", url);
	xmlhttp.onreadystatechange=function() {	
		if (xmlhttp.readyState==4){
				MM_showHideLayers('loading','','hide');
				document.getElementById(id).innerHTML=xmlhttp.responseText;	
	    }
	}
	xmlhttp.send(null);
}