var Message="IDEV Conseil --> Analyse Conception et Développement, Hébergement et Référencement de Site Internet, Intégration Réseaux et Application Bureautique... ";
   var place=1; 
   function scrollIn() {
     window.status=Message.substring(0, place);
     if (place >= Message.length) {
        place=1;
        window.setTimeout("scrollOut()",1200); 
     } else {
        place++;
        window.setTimeout("scrollIn()",50);
     } 
   }
   function scrollOut() {
     window.status=Message.substring(place, Message.length);
     if (place >= Message.length) {
       place=1;
       window.setTimeout("scrollIn()", 400);
     } else {
       place++;
       window.setTimeout("scrollOut()", 50);
      }
   }
<!-- ACCUEIL -->
function AfficheHomePage()
	{
	if (document.all && document.getElementById)
		{
		
		document.write('&nbsp;<A class="link_mn_bas" HREF="#" onClick="HomePage(this);return(false);"><img alt="Choisir IDEV Conseil en page accueil" src="../_img/ico-home.gif" width="13" height="11" border="0">&nbsp;D&eacute;marrage</a>&nbsp;&nbsp;I</A>&nbsp;&nbsp;');
		}
	}
function HomePage(obj)
	{
	obj.style.behavior='url(#default#homepage)';
	obj.setHomePage('http://www.idev-conseil.com');
	}
<!-- FAVORIS -->
nav = navigator.appName.substring(0,3);
ver = navigator.appVersion.substring(0,1)
function addFav()
	{
	if (nav == "Mic" && ver >= 4)
		{
		url_site="http://www.idev-conseil.com";
		titre_site = "IDEV Conseil";
		document.write('<A class="link_mn_bas" HREF="#" onClick="window.external.AddFavorite(url_site, titre_site);return(false);"><img src="../_img/ico-favoris1.gif" width="17" height="11" border="0" alt="Ajouter IDEV Conseil dans vos favoris">&nbsp;&nbsp;Favoris</A>')
		}
	else
		{
		document.write('Faites CTRL+D pour ajouter ce site &agrave; vos favoris!')
		}
	}
