// JavaScript Document
<!--//BEGIN Script
function favoris(){
	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	if (browserName == "Microsoft Internet Explorer" & browserVer >= 4) {
		window.external.AddFavorite('http://www.endurance-implant.com/', '*** IMPLANT DENTAIRE *** Centres et Cliniques dans le monde entier');
		}
	else {
		if (navigator.appVersion.indexOf("Mac",0)>0) {
			alert("Cette fonction n\'est pas réalisable sur Macintosh.\n\nUtilisez plutôt la combinaison de touches \"Pomme-D\"");
			}
		else {
			if ((navigator.appName.indexOf("Microsoft",0)>=0) && (parseInt(navigator.appVersion)>=4)) {
				window.external.AddFavorite(location.href, document.title);
				}
			else {
				alert("Cette fonction n'est possible que par Internet Explorer 4 et +\n\nPour Netscape utilisez plutôt la combinaison de touches \"Control-D\"");
				} // FIN else
			} // FIN else
		} // FIN else
	} // FIN function
//-->
