function AjoutFavoris(theURL, theTITLE) {
	if (window.external) {
		/* Internet Explorer 4+, et ses dérivés (Crazy Browser, Avent Browser ...) */
		window.external.AddFavorite(theURL, theTITLE);
	}
	else if (window.sidebar) {
		/*Netscape 6+ ; Mozilla, FireFox et compagnie (K-Meleon ...) */
		window.sidebar.addPanel(theTITLE,theURL,'');
	}
}
