// filename : bookmarker.js
//
// functions may be used from any webpage linking this file using this tag :
//  <SCRIPT LANGUAGE="Javascript" SRC="./js/filename.js"></SCRIPT>
//
// call with :		<SCRIPT LANGUAGE="Javascript">function();</SCRIPT>

function getBookmarker()
{
	dataS2W = "";
	if (navigator.appVersion.indexOf("MSIE") > 0 && parseInt(navigator.appVersion) >= 4)
	{
		dataS2W += '<A class="no_u" style="cursor: hand;" onclick="window.external.AddFavorite(\'http://www.sorties.org\',\'&#9733; Résumés de nos Sorties ! [http://www.sorties.org] &#9733;\');">Ajouter aux Favoris &#9733;</A>';
		//dataS2W += '<BR><A class="no_u" style="cursor: hand;" onclick="this.style.behavior=\'url(#default#homepage)\'; this.setHomePage(\'http://resumes.xblast-center.com\');">Page de Démarrage !</A>';
	}
	else
	{
		if (navigator.appVersion.indexOf("X11") > 0)
			dataS2W += "<A class='no_u'>Ajouter aux Signets: <BLINK>ALT-K</BLINK></A>";
		else
			dataS2W += "<A class='no_u'>Ajouter aux Signets: CTRL-D</A>";
	}

	document.write(dataS2W);
}

