// fonction d'jout aux favoris
function addFav() { 
	if (document.all) { 
		window.external.AddFavorite(location.href, document.title); 
	} 
	else { 
		alert('Vous pouvez faire CTRL + D pour ajouter cette page dans vos signets, ou favoris.') 
	} 
} 

// fonction de limitation de longueur de champs
function LimiterTaille(champ, texte, taille) {
	if (texte.length > taille)	{
		texte = texte.substring(0, taille);
		champ.value = texte;
	}
}

// fonction de réaffichage
function redimensionne() {
	location.reload();
}

