<!--
var bericht="Graphics and webprogramming by MSM\r              © 2001 Belsquare.\r\r   Enjoy your stay at the Saint-Michel.";
function click(e) {
	// Internet Explorer code
	if (document.all) {
		if (event.button==2||event.button==3) {
		alert(bericht);
		}
	}
	// Netscape code
	if (document.layers) {
		if (e.which == 3) {
		alert(bericht);
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
