/* */
function ChangeUrl(formulaire) {
if (formulaire.ListeUrl.selectedIndex != 0)	{ location.href = formulaire.ListeUrl.options[formulaire.ListeUrl.selectedIndex].value; }
else { alert('Veuillez choisir une destination.'); }
}

/* FAVORIS */
nav = navigator.appName.substring(0,3);
ver = navigator.appVersion.substring(0,1)
function addFav()
	{
	if (nav == "Mic" && ver >= 4)
		{
		url_site="http://www.amateurs-francais.com";
		titre_site = "Amateurs Français";
		document.write('<A HREF="#" onClick="window.external.AddFavorite(url_site, titre_site);return(false);"><img src="images/template/favoris.gif" border="0"></A><BR>')
		}
	else
		{
		document.write('Faites CTRL+D pour ajouter ce site &agrave; vos favoris!')
		}
	}

if(top != self) top.location.href=location.href;