txt2 = "-  Le site est optimisé pour une configuration d'écran de 1024 X 768 pixels  -                                                                                                                                                                                                                                                                                                                                                                                                                          ";
x = txt2.length-1;
place = 0;
function defilStat()
	{
	if (place == txt2.length)
		place = 0;
if (place <= x)
		{
		texteDef = txt2.substring((txt2.length-(x-place)),txt2.length) + txt2.substring(0,place);
		place++;
		}
	window.status = texteDef;
	tempo22 = setTimeout("defilStat()", 80);
	}
onload = defilStat;