function showsup()
  {
  if(document.getElementById && ScanCookie("supersticiel")==0)
    {
    document.getElementById("supersticiel").style.width = larg;
    document.getElementById("supersticiel").style.height = haut;
    document.getElementById("supersticiel").innerHTML = html_haut+html_mil+html_bas;
    setTimeout("closeSup()",30000);
    CreationCookie("supersticiel",false);
    }
  }

function closeSup()
  {
  if(document.getElementById)
    {
    document.getElementById("supersticiel").style.width = 1;
    document.getElementById("supersticiel").style.height = 1;
    document.getElementById("supersticiel").innerHTML = '';
    }
  }

function ScanCookie(variable)
  {
  cook = document.cookie;
  variable += "=";
  place = cook.indexOf(variable,0);
  if (place <= -1)
    return("0");
  else
    {
    end = cook.indexOf(";",place)
    if (end <= -1)
      return(unescape(cook.substring(place+variable.length,cook.length)));
    else
      return(unescape(cook.substring(place+variable.length,end)));
    }
  }

function CreationCookie(nom,valeur,permanent)
  {
  if(permanent)
    {
    dateExp = new Date(2020,11,11);
    dateExp = dateExp.toGMTString();
    ifpermanent = '; expires=' + dateExp + ';';
    }
  else
    ifpermanent = '';
  document.cookie = nom + '=' + escape(valeur) + ifpermanent;
  }


if(document.all)
  {
  larg = document.body.clientWidth;
  haut = document.body.clientHeight;
  }
else
  {
  larg = screen.width;
  haut = screen.height;
  }
  
html_haut = "<TABLE WIDTH="+larg+" HEIGHT="+haut+"><TR><TD VALIGN=middle ALIGN=center BACKGROUND=http://www.raidhannibal.com/_js/img/grille.gif>";
html_bas = "</TD></TR></TABLE>";

/* 
A VOUS DE MODIFER CES LIGNES 
N'OUBLIEZ UN LIEN DE CE TYPE :
POUR POUVOIR REFERMER LA FENETRE SI LE VISITEUR N'EST PAS INTERESSE
*/
html_mil = "<A HREF=\"#\" onClick=\"closeSup();return(false)\" class=\"supersticiel\">Masquer</A>";
html_mil += "<TABLE WIDTH=600 CELLPADDING=0 CELLSPACING=0 BORDER=0>";
html_mil += "<TR>";
html_mil += "<TD><a href=\"http://www.raidhannibal.com/fr/inscriptions_chrra.html\" class=\"img\" title=\"Raid Hannibal : le Grand D&eacute;part, Jeudi 17 Mai au Parc de Gerland !\"><IMG SRC=\"http://www.raidhannibal.com/_userFiles/Image/affiche-grand-depart.jpg\" border=\"0\" width=\"333\" height=\"500\" hspace=\"0\" vspace=\"0\" title=\"Raid Hannibal : le Grand Départ, Jeudi 17 Mai au Parc de Gerland !\" /></a></TD>";
html_mil += "</TR>";
html_mil += "</TABLE>";
window.onload = showsup;