// _________________________________________________________
// 												   FUNCTIONS
function bookMark_Page ()
{
	urlSite = "http://www.vignerons4chemins.com"
	nomSite = "Vignerons des 4 chemins © - www.vignerons4chemins.com"
////////////////////////////////////////////////////////////
// internet explorer windows
	if (window.external)
	{
		window.external.AddFavorite(urlSite,nomSite)
	}
////////////////////////////////////////////////////////////
// internet explorer mac
	if (document.all &&	(navigator.userAgent.indexOf('Win') < 0))
	{
		alert ("COMMAND + B sur la page en cours d'ouverture pour ajouter aux favoris : " + nomSite + " !")
	}
////////////////////////////////////////////////////////////
// netscape 6.x - firefox
	if (window.sidebar)
	{
		alert ("CTRL + D sur la page en cours d'ouverture pour ajouter aux favoris : " + nomSite + " !")
		bookwin = window.open('index.htm' , 'index' , 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=400, height=210');
		larg = screen.width/2;
		haut = screen.height/2;
		bookwin.moveTo((larg-200),(haut-105));
	}
////////////////////////////////////////////////////////////
// netscape 4.x
	if (document.layers)
	{
		alert ("CTRL + D sur la page en cours d'ouverture pour ajouter aux favoris : " + nomSite + " !")
	}
////////////////////////////////////////////////////////////
// opéra
	if (navigator.userAgent.indexOf('Opera') != -1)
	{
		alert ("CTRL + T sur la page en cours d'ouverture pour ajouter aux favoris : " + nomSite + " !")
	}
}


