<!--
var message="Ihre Maustaste ist O.K ! (c)1999 by Pitti_Platsch"
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=check;

function check(x) {
	if (document.all) {
		if (event.button == 2) {
		alert(message);
		return false;
		}
	}
	if (document.layers) {
		if (x.which == 3) {
		alert(message);
		return false;
		}
	}
}
// -->
