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