// Add current page to bookmark
function add_bookmark(){
 var current_href = location.href;
 var current_title = document.title;

 if(window.sidebar){
 // Mozilla Firefox
 window.sidebar.addPanel(current_title, current_href,"");
 }else if(window.external){
 // IExplorer
 window.external.AddFavorite(current_href, current_title);
 }else if(window.opera){
 // Opera
 return true;
 }else{
 alert("Fonctionnalité indisponible pour votre navigateur.\nVeuillez ajouter manuellement le site à vos favoris.");
 }
}