
/* Favoris */
function bookmarksite(title, url){
 if (document.all) window.external.AddFavorite(url, title); else if (window.sidebar) window.sidebar.addPanel(title, url, "")
}

/* Liste Produits */

function ShowHide(thingId){
 var targetElement = document.getElementById(thingId) ;
 if (targetElement.style.display == "none") {
  targetElement.style.display = "block" ;
  targetElement.backgroundPosition="top";
 } else {
  targetElement.style.display = "none" ;
 }
}




