function cargaDestino(valor,divDestino)
{
	var idZona=valor;
	llamadaAJAX("cargaDestinos.asp?zona="+idZona, divDestino)
}


function cargaProducto(valor,divDestino)
{
	var idDepartamento=valor;
	llamadaAJAX("cargaProductosWeb.asp?departamento="+idDepartamento, divDestino)
}



function cargaProvincias(valor,divDestino)
{
	var idPais=valor;
	llamadaAJAX("cargaProvincias.asp?pais="+idPais, divDestino)
}

function cargaProductos(valor,divDestino)
{
	var iddepartamento=valor;
	llamadaAJAX("cargaProductos.asp?departamento="+iddepartamento, divDestino)
}

function cargaGenerico(URL,divDestino)
{
	llamadaAJAX(URL, divDestino)
}

function llamadaAJAX(origenDatosURL, divDestino)
{ 

   xmlhttp=null 
   // cÃ³digo para Mozilla 
   if (window.XMLHttpRequest){ 
     xmlhttp=new XMLHttpRequest() 
   } 
   // CÃ³digo para IE 
   else if (window.ActiveXObject){ 
     xmlhttp=new ActiveXObject("Microsoft.XMLHTTP") 
   } 
   if (xmlhttp!=null)
	{ 
	    xmlhttp.open("GET", origenDatosURL, false); 
		xmlhttp.setRequestHeader( "If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT" );
		xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	    xmlhttp.send(null); 
    	document.getElementById(divDestino).innerHTML = xmlhttp.responseText; 
	}       
} 
