function getHTTPObject() {
  var xmlhttp;
  /*@cc_on
  @if (@_jscript_version >= 5)
    try {
      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e) {
        xmlhttp = false;
      }
    }
  @else
  xmlhttp = false;
  @end @*/
  if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
    try {
      xmlhttp = new XMLHttpRequest();
    } catch (e) {
      xmlhttp = false;
    }
  }
  return xmlhttp;
}
var http = getHTTPObject();


function handleHttpResponse(target)
{
  if (http.readyState == 4) {
    document.getElementById(target).innerHTML = http.responseText;
	 
    
  }
}

function trocaBannerHome( id )
{
	
	document.getElementById("img_destaques_home").innerHTML = "<img src=\"images/loading.gif\" style=\"margin-top:50px;\">";
	
	http.open("GET", "muda_banner_home.asp?id=" + id, true);
	http.onreadystatechange = function() {
		handleHttpResponse('img_destaques_home');
	}
	http.send(null);
	
}




