//script
var msg="MESSAGE";
var longueur=0;
var delai=50;

function defiler() {
	var nb_char=msg.length;
	longueur++;
	if (longueur>nb_char) index=0;
	window.status=msg;
	setTimeout("defiler()",delai);
}

function defilement(txt,tps) {
	msg=txt + "              " ;
	delai=tps;
	defiler();
}

function popup(page) 
{
	window.open(page,'annonce','width=400,height=500,scrollbars=yes, location=no, directories=no, status=no, resizable=no, copyhistory=no, left=300, top=50');	
}
