/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

function AfficheHomePage()
	{
	if (document.all && document.getElementById)
		{
		document.write('<A HREF="#" onClick="HomePage(this);return(false);"><img src="/IMAGES/logo/Hotellerie_demarrage.gif" alt="Hotellerie demarage" border="0"> </A><BR>');
		}
	}
function HomePage(obj)
	{
	obj.style.behavior='url(#default#homepage)';
	obj.setHomePage('http://www.hotellerie.be');
	}

function AfficheMakeFavori()
	{
	if (document.all && document.getElementById)
		{
		document.write('<A HREF="#" onClick="MakeFavori(this);return(false);"><img  NAME="Hotellerie favori" src="/IMAGES/logo/Hotellerie_favori.gif" alt="Hotellerie favori" border="0"></A><BR>');
		}
	}
	
function MakeFavori()
		{
		browserName = navigator.appName; 
		browserVer = parseInt(navigator.appVersion); 
		if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) 
		{ 
		window.external.AddFavorite(location.href, document.title);
		} 
		else alert('cette fonction nn\'est pas disponible avec votre navigateur');
	}

	
/*
A mettre entre les balises <Body> </BODY>, a l'endroit ou doit apparaitre le script.

	<!-- DEBUT DU SCRIPT -->
		<SCRIPT LANGUAGE="JavaScript">
		
		Script edité sur l'éditeur JavaScript
		http://www.editeurjavascript.com
		
		AfficheHomePage()
		</SCRIPT>
	<!-- FIN DU SCRIPT -->
*/