var msg="MESSAGE";
var index=0;
var delay=200

function defil() {
	var nb_char=msg.length;
	index++;
	if (index>nb_char) index=0;
	window.status=msg.substring(index)+msg;
	setTimeout("defil()",delay);
}

function defiler(txt,tps) {
	msg=txt + "      " + txt + "      " ;
	delay=tps;
	defil();
}

defiler("Grou'z Banda la banda qui fait grouzer tes voisins !!!",100);

// Fonction de rollover
function rollover(nom,src) {	
	document.images[nom].src=src;
}

function OuvrirPopup(url,longueur,hauteur) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-longueur)/2;
window.open(url,"","top="+top+",left="+left+",width="+longueur+",height="+hauteur+"")
}

function popup(page) {
	window.open(page,'popup','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=500, height=500');	
}



