function GP_codeschutz_kontext() {
  if (document.layers || 
      navigator.userAgent.indexOf("Netscape6")>-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("Kein Rechtsklick!");
      return false;
    }
  } else if (document.layers || document.getElementById){
    if (e.which >= 2) {
      alert("Herzlich Willkommen");
      return false;
    }
  } else
    return true; 
}