// JavaScript Document
// fängt das Menü bei Drücken der rechten Maustaste ab
var ns4up = (document.layers) ? 1 : 0; 
var ie4up = (document.all) ? 1 : 0; 
if (ns4up) {document.captureEvents(Event.MOUSEDOWN)} 
document.onmousedown=taste 
function taste(e) { 
	if (ns4up) {z=e.which} 
	if (ie4up) {z=event.button} 
	if (z>1) { 
		alert("Funktion auf dieser Website nicht belegt!") 
		return false 
	} 
} 

