	//////////////////////////////////
	// empeche la lecture des pages //
	//////////////////////////////////

<!--
	function right(e) {
	if (navigator.appName == 'Netscape' && 
	(e.which == 3 || e.which == 2))
	return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && 
	(event.button == 2 || event.button == 3)) {
	alert("Désolé ! Cette fonction n'est pas active.");
	return false;
	}
	return true;
	}
	document.onmousedown=right;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=right;
//-->

	/////////////////////////////////
	// ajouter le site aux favoris //
	/////////////////////////////////


	var bookmarkurl="http://www.canal-du-centre.be/index.html"
	var bookmarktitle="Canal du Centre"
	
	function addbookmark() {
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}


	/////////////////////////////////
	// ajouter la page aux favoris //
	/////////////////////////////////

<!--
	var bookmarkurl=location.href
	var bookmarktitle=location.hostname
	
	function addbookmarkpage() {
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}
//-->

	/////////////////////////////////////
	// message dans la barre de status //
	/////////////////////////////////////

<!--
         function setStatus() {
            // Message de barre d'état à afficher
            window.defaultStatus = " ";
            // Message temporaire à afficher dans la barre d'état
            window.status = "Message temporaire";
         }
//-->

