function PreguntasFrecuentes(){
      new Ajax.Updater('divSecciones','vista/preguntasFrecuentes.php',{
            method:'post',
            contentType:'application/x-www-form-urlencoded',            
            onComplete:function(respuesta){                
                new Effect.SlideDown('divSecciones');
                googleAnalytics();
            },
            onException:function(error){
                alert('exception'+ error.name + " "+ error.message + " " + error.toString());
            },
            onFailure:function(error){
                alert('falla'+ error.name + " "+ error.message + " " + error.toString());
            }
        });
}
