var jsReady = true;
$(document).bind("ready",function() 
{	
	jsReady = true;
     
	$("#seleccionCiudad").bind("change",detalle);
	
});
function detalle(){
	if($("#seleccionCiudad").val()!=0)
	{
		myHTML = '<div style="padding:60px 0;text-align:center"><img src="../images/ajax-loader.gif" width="32" height="32"></div>';
		$('#contentAgentes').html(myHTML);
		
		$.ajax({
			type: "POST",
			url: "../venta/detalle_agente.php",
			data: "estado="+$("#seleccionCiudad").val(),
			success: function(datos)
			{
			  $("#contentAgentes").html("");	
			  $("#contentAgentes").html(datos);
			  sendToActionScript($("#seleccionCiudad").val());
			}
		});
	}
	else
	{
		myHTML = '<div style="padding:60px 0;text-align:center">Debe seleccionar un estado para su b&uacute;squeda</div>';	
		$('#contentAgentes').html(myHTML);	
	}
}

function isReady() {
	return jsReady;
 }

function thisMovie(movieName) {
   if (navigator.appName.indexOf("Microsoft") != -1) {
		 return window[movieName];
	 } else {
		 return document[movieName];
	 }
 }
 function sendToActionScript(value) {

	 thisMovie("mapa").sendToActionScript(value);
	 
 }