// 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.");
 }
}
var popWin2=null;
function rdsPopup( url, width, height )
{         
popWin2=window.open(url  , 'gallery', 'width=' + width + ',height=' + height + ',left=50,top=50,location=no,status=yes,scrollbars=yes,resizable=yes'); 
popWin2.focus()  ;

}
 
