<!--
// block the right mouse click on the page
var message="Code klauen? Nix da!\n\nŠ2001 A.Damm"
 
function click(e) { //3.0
	if (document.all) {
		if (event.button == 2 || event.button == 3 || event.button == 6 || event.button == 7 || event.keyCode == 93) {
			alert(message);
			event.returnValue=false;
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
function taste(e){
  if (document.all){
    window.status= "Taste: "+event.keyCode;
  }
}
if (document.layers) {
		document.captureEvents(Event.MOUSEDOWN);
}
//document.onkeydown=click;
//document.onmousedown=click;
// -->
