function SetFavorite(form)
{
if (GetCookie("cookie-favorite") == null)
	{
	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) 
		{
		window.external.AddFavorite(location.href, document.title);
		}
	var expdate = new Date ();
	FixCookieDate (expdate);
	expdate.setTime (expdate.getTime() + (30 * 24 * 60 * 60* 1000)); // cookie pour 30 jours
	SetCookie ("cookie-favorite", "est déjà enregistrée", expdate);
	// document.write("J'ai créé le cookie !");
	}
	else
	{
	// document.write ("L'accès a cette page   " + GetCookie("cookie-favorite") + "<br>");
	}
}	
