			// Ajout AG/ 3-2-04 Mssage défilement de texte dans une zone de formulaire
	// Pour utiliser la fonction "setTimeout" avec les anciens navigateurs, on utilise des variables globales
			var msg="MESSAGE";
			var index=0;
			var delay=200

			function defil() {
	// Fonction récursive pour le décalage du texte du message
	// 	document.forms[0].elements[0].blur();
			var nb_char=msg.length;
			index++;
			if (index>nb_char) index=0;
			document.forms[0].elements[0].value=msg.substring(index)+msg;
			setTimeout("defil()",delay);
			}

			function defiler(txt,tps) {
	//Cette fonction est appelée pour déclencher le défilement.
			msg=txt + "   -   ";
			delay=tps;
			defil();
			}			
			function Visu(obj)
			{
				document.getElementById(obj).style.visibility="visible";
			}
			function Novisu(obj)
			{
				document.getElementById(obj).style.visibility="hidden";
			}
//  Début traitement images 	: Remplacement photos 
			function i1()
			{
				document.image.src="./i/phot1.jpg";
			}
			function i2()
			{
				document.image.src="./i/phot2.jpg";
			}
			function i3()
			{
				document.image.src="./i/phot3.jpg";
			}
			function i4()
			{
				document.image.src="./i/phot4.jpg";
			}
			function i5()
			{
				document.image.src="./i/phot5.jpg";
			}
			function i6()
			{
				document.image.src="./i/phot6.jpg";
			}
			function i7()
			{
				document.image.src="./i/phot7.jpg";
			}
			function i8()
			{
				document.image.src="./i/phot8.jpg";
			}
			function i9()
			{
				document.image.src="./i/phot9.jpg";
			}	
			function i10()
			{
				document.image.src="./i/phot10.jpg";
			}	
// Ajout AG 14-01-05 /affichage de n'importe quelle fenêtre de type "window" ( la nouvelle remplace l'ancienne , et elle est toujours visible ) 
			var newwindow = 'center';
			function affiche_wind(url) {
			if (newwindow.location && !newwindow.closed) {
   				 newwindow.location.href = url; 
  				 newwindow.focus(); } 
			else { 
   				 newwindow=window.open(url,'htmlname','top=120,left=180,height=250,width=680,scrollbars=yes');} 
			}		