
var xmlHttp2

function SelecionaCorretora(idEstado, idCidade)
{

	//alert("idEstado: " + idEstado);
	//alert("idCidade: " + idCidade);
	
	if (idEstado.length==0)
	{ 
	  	document.getElementById("divBotaoSite").style.display = "none";
		document.getElementById("divCorretoras").style.display = "none";
		document.getElementById("divCidades").innerHTML="";
		return;
	}
	else
	{	
		xmlHttp2=GetXmlHttpObject()
	}
	
	
	if (xmlHttp2==null)
	  {
	  	alert ("Your browser does not support AJAX!");
	  	return;
	  } 
	  
	var url="/AjaxBuscaCorretoras.asp";
	url=url+"?idEstado="+idEstado+"&idCidade="+idCidade;
	xmlHttp2.onreadystatechange=stateChanged2;
	xmlHttp2.open("GET",url,true);
	xmlHttp2.send(null);
} 


function stateChanged2() 
{ 
	if (xmlHttp2.readyState==4)
	{ 
	
	//document.getElementById("divBotaoSite").style.display = "none";
	//document.getElementById("divCidades").style.display = "block";
	//document.getElementById("divCorretoras").style.display = "none";
	//document.getElementById("divCidades").innerHTML=xmlHttp.responseText;
	
	document.getElementById("divBotaoSite").style.display = "none";
	document.getElementById("divCidades").style.display = "block";
	document.getElementById("divCorretoras").style.display = "block";
	document.getElementById("divCorretoras").innerHTML=xmlHttp2.responseText;
	
	}
}

function GetXmlHttpObject2()
{
var xmlHttp2=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp2=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp2=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp2=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp2;
}



