function LoadPage(page,usediv) {
         try {xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");}  catch (e) { alert("Error: No se ha podido cargar la pagina.");}
         document.getElementById(usediv).innerHTML = '<img src="/imagenes/web/cargando.gif" alt="Cargando..." />';
         xmlhttp.onreadystatechange = function(){
                 if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
                        document.getElementById(usediv).innerHTML = xmlhttp.responseText;
                 }
         }
         xmlhttp.open("GET", page);
         xmlhttp.send(null);
         return false;
}