function Load_Img(Id,Src)
  {
   var img = new Image();
   img.onload = function () 
   { document.getElementById(Id).innerHTML = '<img src="'+Src+'" alt="['+Id+']"/>'; img.free;} 
   img.src = Src;
  }
  
function Load_Header()
{ 
  var str = "";
  str = str + '<table style="border-style: none none none none;width:100%">'
            + '  <tbody><tr>'
            + '    <td style="border-style: none none none none; margin-left: auto; margin-right: auto; text-align: center;"><img alt="Sissi &amp; Job" src="/Logos/Logo-Negatif.png" /></td>'
            + '    <td style="border-style: none none none none; margin-left: auto; margin-right: auto; text-align: center;">'
            + '      <b>Sissi, Job, Louenn &amp; Tilio Personal Web Server<br /></b><a target="_top" href="http://www.grosjeanne.name">http://www.grosjeanne.name</a><br /><br />'
            + '      <a target="_top" id="Accueil" href="/">[Accueil]</a>'
            + '      <a target="_top" id="Photos" href="/">[Photos]</a>'
            + '      <a target="_top" id="Meteo" href="/Meteo/">[Meteo]</a>'
            + '      <a target="_top" id="Domotique" href="/Domotique/">[Domotique]</a>'
            + '      <a target="_top" id="CIPPRC" href="/Wiki/CIPPRC">[CIPPRC]</a>'
            + '      <a target="_top" id="Private" href="/private/">[Priv&eacute;]</a>'
            + '    </td>'
            + '    <td style="border-style: none none none none; margin-left: auto; margin-right: auto; text-align: center;width: 260px"><a target="_top" id="T_Meteo" href="/Meteo/"></a></td>'
            + '  </tr></tbody>'
            + '</table>';

  if (document.getElementById('Header') == null) {document.getElementsByTagName('body')[0].innerHTML = '<div style="z-index:-1;height:150px;" id="Header"></div>' + document.getElementsByTagName('body')[0].innerHTML;}
  document.getElementById('Header').innerHTML = str;

    Load_Img('Accueil','/bton/Accueil.png');
    Load_Img('Photos','/bton/Photos.png');
    Load_Img('Meteo','/bton/Meteo.png');
    Load_Img('Domotique','/bton/Domotique.png');
    Load_Img('CIPPRC','/bton/CIPPRC.png');
    Load_Img('Private','/bton/Private.png');
  //  Load_Img('T_Meteo','/Meteo/g?stylesheet=WWW-Report.xml');
}

Load_Header();