<!--

function right(e) {
	if (document.layers || navigator.product)
	{	if (e.which==2 || e.which==3)
		{window.status="!!! RECHTER MOUSE CLICK IST NICHT ERLAUBT !!!"; return false; }
	}
	
	else if (document.all && (event.button==2 || event.button==3)) {
		window.status="!!! NO RIGHT CLICK ALLOWED !!!"
		openclosewindow()
		return false;
	}
}
function keystroke(e)
{	if (e.which==0)
	{	window.status="!!! STRG-TASTE IST NICHT FREIGEGEBEN !!!"; openclosewindow();
		return false;
	}
}


function openclosewindow() {
	var windownews=window.open("", "", "status=no,location=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,width=50,height=50,top=20000,left=200");windownews.close()
	
}
if (document.all) {
	document.onmouseup=right;
	window.onmouseup=right;
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=right;
	document.captureEvents(Event.KEYPRESS); 
	document.onkeypress=keystroke;

}
if (navigator.product)
{	document.addEventListener("mouseup",right,false) 
	document.addEventListener("keypress",keystroke,false) 
}

//-->
