<!-- Script Footer Partie 2
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
VERSION4 = (NS4|IE4) ? 1 : 0;

//   Recharger la page en cas de redimensionnement (NS4 uniquement)
if(NS4){oW=innerWidth;oH=innerHeight;onresize=function(){if(innerWidth!=oW||innerHeight!=oH)location.reload()}}

function footerChangeString (flag) {
	var Ind=footerCount;
	if (flag) Ind = footerCount+1;
	if (Ind==footerTXT.length) Ind=0;

	footerWrite ("<P CLASS=footerP>"+footerTXT[footerCount]+"<BR>"+footerTXT[Ind]+"</P>");

	if (flag) if (++footerCount >= footerTXT.length) footerCount=0;
}

function footerWrite (str) {
	if (NS4) {
		with (footerObj.document) {
			write(str);
			close();
		}
	}
	if (IE4) footerObj.innerHTML = str;
}

function footerScroll () {
	var dec = 0;
        if (++footerSynchro == 0) footerChangeString (1);
	if (footerSynchro > 0 && footerSynchro < 20) dec=footerSynchro;
        if (footerSynchro == 20) {
		footerSynchro= -footerWait;
		footerChangeString (0);
	}
	if (NS4) footerObj.top  = -dec;
	if (IE4) footerObj.style.top = -dec;
}
// -->