function writext(texdef)
	{
	document.write(texdef);
	}

/*writext('<DIV ID=txt_defil_relativ onMouseOver="txt_defil_stop()" onMouseOut="txt_defil_rstart()" STYLE="position:relative;width:'+txt_defil_width +';height:'+txt_defil_height+';background-color:'+txt_defil_bgcolor+';background-image:url('+txt_defil_background+');overflow:hidden">');//modif overflow 180108
writext('<DIV ID=txt_defil_cadre STYLE="position:absolute;width:'+(txt_defil_width -8)+';height:'+(txt_defil_height-8)+';top:4;left:4;clip:rect(0 '+(txt_defil_width -8)+' '+(txt_defil_height-8)+' 0)">');
writext('<div id=txt_defiler_1 style="position:absolute;width:'+(txt_defil_width -8)+';left:0px;top:0px;" CLASS=txt_defil >'+txt_defil_info[0]+'</DIV>');
writext('<div id=txt_defiler_2 style="position:absolute;width:'+(txt_defil_width -8)+';left:320'+'px;top:0px;" CLASS=txt_defil >'+txt_defil_info[1]+'</DIV>');
writext('</DIV></DIV>');
*/
cont_defil=0;
		document.getElementById('txt_defiler_1').innerHTML = txt_defil_info[cont_defil];
cont_defil+=1;
if (cont_defil>txt_defil_info.length) cont_defil=0;
		document.getElementById('txt_defiler_2').innerHTML = txt_defil_info[cont_defil];
cont_defil+=1;
if (cont_defil>txt_defil_info.length-1) cont_defil=0;
		document.getElementById('txt_defiler_3').innerHTML = txt_defil_info[cont_defil];
txt_defil_1 = 1;
txt_defil_2 =2;
txt_defil_3 =3;
txt_defil_left = 0;

stop_mouss=0;

function txt_defil_f2 ()
	{
if (stop_mouss == 0)
{	
	txt_defil_left -= 1;
	document.getElementById('txt_defiler_'+txt_defil_1).style.left = txt_defil_left+'px';
	document.getElementById('txt_defiler_'+txt_defil_2).style.left = txt_defil_left+txt_defil_box_width+'px';
	document.getElementById('txt_defiler_'+txt_defil_3).style.left = txt_defil_left+txt_defil_box_width*2+'px';
	if((txt_defil_left+txt_defil_box_width) < 0)
		{
		if (txt_defil_1==3) txt_defil_1=1; else txt_defil_1+=1;
		if (txt_defil_2==3) txt_defil_2=1; else txt_defil_2+=1;
		if (txt_defil_3==3) txt_defil_3=1; else txt_defil_3+=1;
		txt_defil_left=0;
		cont_defil+=1;
		if (cont_defil>txt_defil_info.length-1) cont_defil=0;
			document.getElementById('txt_defiler_'+txt_defil_3).innerHTML = txt_defil_info[cont_defil];
		}


	move2=setTimeout("txt_defil_f2 ()",10)
	/*else
		txt_defil_f3()*/
}
else	move1=setTimeout("txt_defil_f2 ()",1000)	
	}

function txt_defil_stop()
	{
	stop_mouss=1;
	}
function txt_defil_rstart()
	{
	stop_mouss=0;
	}	
txt_defil_f2();
