//########################################################
//                      Fonction pour mail
//########################################################
function direct_email(){
        var chaine_mail = '<a rel="nofollow" href="mailto:';
        chaine_mail += '?subject= ' + encodeURIComponent( document.title );
        chaine_mail += '&amp;body=Take a look at this web page I found. ';
        chaine_mail += 'You can see it at: ' + encodeURIComponent(window.location.href);
        chaine_mail += '" title="Send by e-mail"> <img src="../images/mail.png" border="0" align="absmiddle"/> Send this page to a friend</a>';
        document.write(chaine_mail);
}

