
function xmlhttp(){
        var xmlhttp;
        try{xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}
        catch(e){
            try{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
            catch(e){
                try{xmlhttp = new XMLHttpRequest();}
                catch(e){
                    xmlhttp = false;
                }
            }
        }
        if (!xmlhttp)
                return null;
            else
                return xmlhttp;
    }
function mostrar_comentarios(id,pag){
	 
	    url_destino="http://www.revistaclavesdearte.com/ajax/mostrar_comentarios.php?pag="+pag+"&id="+id;
	$.ajax({
        url: url_destino,
        async:true,
        //beforeSend: function(objeto){
        //    alert("Adiós, me voy a ejecutar");
        //},
        //complete: function(objeto, exito){
        //    alert("Me acabo de completar")
        //    if(exito=="success"){
        //        alert("Y con éxito");
        //    }
        //},
        contentType: "application/x-www-form-urlencoded",
        dataType: "html",
        //error: function(objeto, quepaso, otroobj){
        //    alert("Estas viendo esto por que fallé");
        //    alert("Pasó lo siguiente: "+quepaso);
        //},
        global: true,
        ifModified: false,
        processData:true,
        success: function(datos){
            $("#capa_comentarios").html(datos);
            
        },
        timeout: 3000,
        type: "GET"
	});	
        
  } 