function cargadorajax(destino){
try {
       xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
   }
    catch (e) {
   }
 xmlhttp.onreadystatechange = cargo;
document.getElementById('cargador').innerHTML = "<p align=center ><br><br><br><img src='http://www.mipagina.cl/imagenes/cargando.gif' /></p>";
    xmlhttp.open("GET", destino);
    xmlhttp.send(null);
}
function cargo() {
    if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
        document.getElementById('cargador').innerHTML = xmlhttp.responseText;
    }
}


function volar(){
directorioaver = document.directorio.categorias.value
document.location.href= 'http://www.mipagina.cl/directorio/de/' + directorioaver
}

function volare(){
directorioaver = document.ciudades.comuna.value
document.location.href= 'http://www.mipagina.cl/ciudades/' + directorioaver
}

function cambiamapa()
{
mapaaver = document.mapas.comuna.value
document.location.href= 'http://www.mipagina.cl/mapa-de-' + mapaaver
}