function newAjax1()
{
        var xmlhttp2=false;
        try
        {
                // Creacion del objeto AJAX para navegadores no IE
                xmlhttp2=new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch(e)
        {
                try
                {
                        // Creacion del objet AJAX para IE
                        xmlhttp2=new ActiveXObject("Microsoft.XMLHTTP");
                }
                catch(E)
                {
                        if (!xmlhttp2 && typeof XMLHttpRequest!="undefined") xmlhttp2=new XMLHttpRequest();
                }
        }
        return xmlhttp2;
}

function mostrarConsultoria(capa)
{	
        ajax2=newAjax1();
        ajax2.open("POST", "../js/interior_consultoria.php?", true);
        ajax2.onreadystatechange=function()
        {
                if (ajax2.readyState==4)
                {
            //            alert(ajax.responseText);
			document.getElementById(capa).innerHTML=ajax2.responseText;
                }
        }
        ajax2.send(null);
}
