<!-- n'oubliez pas de remercier l'auteur -->
<!-- des nouveautes regulierement http://www.xhtml.net -->


<HTML>
<head>
<script language="JavaScript">
<!--
/* Copyright (C)1998 Guy CRAMOISY email : GCCISEL@wanadoo.fr
All Rights Reserved. This applet can be re-used or modified, if credit is
given in the source code. We will not be held responsible for any unwanted
effects due to the usage of this applet or any derivative. No warrantees for
usability for any specific application are given or implied. Guy CRAMOISY,
August 31th,1998.
*/
 var iPtrChaine;
 var bStatutEnCours = 0;
 var bStop = 0;
 var sEspaces = new String();
 var sStatut = new String();

// sChaine = Texte  faire dfiler
// iTaille = Taille de fentrage
// iEspacement = Espacement entre deux dfilements
// iVitesse = Temporisation entre deux affichages en ms
 function afficheStatut(sChaine, iTaille, iEspacement, iVitesse) {
  if (bStop == 1) {
   bStatutEnCours = 0;
   bStop = 0;
   window.status = "";
   clearTimeout(idTimer);
  }
  else {
   if (bStatutEnCours == 0) {
    iPtrChaine = 0;
    var i;
    sEspaces = "";

    for (i = 0; i < iTaille; i++) {
     sEspaces += " ";
    }

    bStatutEnCours = 1;

    var sTexte = new String(sChaine);
    sChaine = sEspaces;

    for (i = 0; i < Math.ceil(iTaille / (sTexte.length + iEspacement)); i++)
{
     sChaine += sTexte + sEspaces.substring(0, iEspacement);
    }
   }

   sFonction = "afficheStatut('" +  sChaine + "'," + iTaille + "," +
iEspacement + "," + iVitesse + ")";
   var idTimer = setTimeout(sFonction, iVitesse);
   sStatut = sChaine.substring(iPtrChaine, Math.min(iPtrChaine + iTaille,
sChaine.length)) +
              sChaine.substring(iTaille, Math.max(iTaille, iPtrChaine -
sChaine.length + (iTaille * 2)));
   window.status = sStatut;
   iPtrChaine++;
   if (iPtrChaine == sChaine.length) {
    iPtrChaine = iTaille;
   }
  }
 }

 function effaceStatut() {
  bStop = 1;
 }

//-->
</script>


<title>Dfilement en JavaScript : eXperience HTML (CGI, HTML, Java, Applets Java, Perl,
JavaScript)</title>

</head>
<body>


<p align="center">
	<font size="2" face="Arial, helvetica">
	<a href onMouseOver="afficheStatut('eXperience HTML',100,30,100); return true"
    onMouseOut="effaceStatut(); return true">Regardez en bas !</a>
</p>

<hr size="1" width="90%">
<center>
<table border="0" width="90%" align="center" bgcolor="#336699" cellspacing="0" cellpadding="2">
  <tr>
    <td width="100%"><blockquote>
      <p align="right"><a href="http://www.xhtml.net">
	  <font face="Arial" color="#F1E9A1">
	  <small>eXperience HTML : Dynamitez vos pages webs !</small></font></a></p>
    </blockquote>
    </td>
  </tr>
</table>
</center>


</body>
</html>