//<!--// favicon.js - 2005 - francisek.over-blog.com// Entrez l'url de votre icône icivar icon_url = "http://ddata.over-blog.com/xxxyyy/0/03/50/92/favicon.ico";function SetIcon(icon) {  try {    var h = document.getElementsByTagName('head')[0];    var l = document.createElement('link');    l.setAttribute("href", icon);    l.setAttribute("type","image/x-icon");    l.setAttribute("rel", "shortcut icon");    h.appendChild(l);  } catch(e) {};}SetIcon(icon_url);//-->