// Fonction Affichage images MEDIATHEQUE
function zoomer(image) {
	var p=document.getElementById ("zoom1");

	document.getElementById ("z_video").style.display='none';
	document.getElementById ("z_photo").style.display='block';

	p.style.visibility="visible";
        p.innerHTML="<img src='"+image+"' class='photo'>";
}


// Fonction Limiteur caratères LOG
function limiteur()
    {
    maximum = 130;
    champ = document.formulaire.msg;
    indic = document.formulaire.indicateur;

    if (champ.value.length > maximum)
      champ.value = champ.value.substring(0, maximum);
    else
      indic.value = maximum - champ.value.length;
    }



// Fonction Affiche Episodes
function affiche(div_name){

	if (div_name=='figaro_2007'){		
		document.getElementById('figaro_2008').style.display = "none";
		document.getElementById('figaro_2007').style.display = "block";
	}

	if (div_name=='figaro_2008'){
		document.getElementById('figaro_2007').style.display = "none";
		document.getElementById('figaro_2008').style.display = "block";
	}

}
