<!--
	if (document.layers){
	window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
	window.onmousedown=rightclick;
	window.onmouseup=rightclick;
	function rightclick(e) {
	if (e.which == 3) {
	// Put right mouse code here
	alert('(c) Egon Haase 2005');
	return false;
	}
	else {
	return true;
	}
	}
	}
	if (document.all){
	function click() {
	if (event.button==2) {
	alert('(c) Egon Haase 2005')
	}
	if (event.button==3) {
	alert('(c) Egon Haase 2005')}
	}
	document.onmousedown=click
	}
	// -->
	
function click (e) {
if (!e)
e = window.event;
if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3)) {
if (window.opera)
window.alert("(c) Egon Haase 2005");
return false;
}
}
if (document.layers)
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = click;
document.oncontextmenu = click;

function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


  
