function GP_codeschutz_kontext() {
	if(document.layers ||
		navigator.userAgent.indexOf("Firefox")>-1,
		navigator.userAgent.indexOf("Galeon")>-1,
		navigator.userAgent.indexOf("Camino")>-1,
		navigator.userAgent.indexOf("Netscape6")>-1,
		navigator.userAgent.indexOf("Netscape7")>-1) {
		
		window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
		window.onmousedown = GP_kein_kontext;
		window.onmouseup = GP_kein_kontext;
	}
	
	if(document.all) {
		document.onmouseup = GP_kein_kontext;
		window.onmouseup = GP_kein_kontext;
	}
}

function GP_kein_kontext(e) {
	if(document.all) {
		if(event.button >= 2) {
			alert("(c) 2006 dbp Kommunikation oHG");
			return false;
		}
	}
	else if(document.layers || document.getElementById) {
		if(e.which >= 2) {
			alert("(c) 2006 dbp Kommunikation oHG");
			return false;
		}
	}
	else {
		return true;
	}
}

function cclick(e) {
	e.style.border = "1px solid #CCCC99";
	e.style.background = "#FFFFF4";
}

function cblur(e) {
	e.style.border = "1px solid #CCCCCC";
	e.style.background = "#FFFFFF";
}
