
var icon_url = "imagesfav/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);
//-->