var obj;
var texte;
var horloge;

function clignote(objAffichage) {
	
	if (document.getElementById){
		obj = document.getElementById(objAffichage);
	} else if (document.all) {
		obj = document.all[objAffichage];
	}
	texte = obj.innerHTML;
	affiche();
	
	if(afficher){
		affiche(objAffichage);
	} else {
		texte = obj.innerHTML;
		masque(objAffichage);
	}
}
function affiche() {
	obj.innerHTML = texte;
	window.clearInterval(horloge);
	horloge = window.setInterval(masque,2000);
}
function masque() {
	obj.innerHTML = '&nbsp;<br/><br/>&nbsp;';
	window.clearInterval(horloge);
	horloge = window.setInterval(affiche,500);
}