<!--

/* ===============================================================
	Affiche la boite pour ajouter une page aux favoris (IE).
	Affiche un message pour ajouter aux bookmarks(Netscape).
	=============================================================== */
function GBL_DisplayAddToFavorite() 
{ 

	if (GBL_IsInternetExplorer())
	document.write('<a class="bouton" href="javascript:window.external.AddFavorite(location.href,document.title)">Add this page to your bookmarks !</a>')

	else
	document.write('<p class="TextTableNew">Click on ctrl+D to add this<br>page at your bookmarks</p>')

} //function GBL_DisplayAddToFavorite() 


//-->