var annonce = document.getElementById('annonce_corps');
var lien = document.getElementById('annonce_fiche_formulaire_url');

if (annonce && lien) {
        var href = lien.getAttribute("href");
        lien.removeAttribute("href");

        annonce.onclick = function(e) {
                if (href && href.length && href != 'http://undefined/') {
                        window.open(href);
                }

                return false;
        };
}
