<!-- 
// left-Click not allowed
if ( document.layers ) {
  window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
  window.onmousedown=rightclick;
  window.onmouseup=rightclick;

  function rightclick(e) {
    if ( e.which == 3 ) {
      forbidden();
      return false;
    } else {
      return true;
    }
  }
}

if ( document.all ) {
  function click() {
    if ( event.button==2 ) {
      forbidden()
    }
    if (event.button==3) {
      forbidden()
    }
  }
  document.onmousedown=click
}

function forbidden() {
  alert('Hey.. be carefull, I am watching you!')
}

// Zeigt den Titelframe an
function ShowTitel( url )
{
  if (parent.titelFrame)
    parent.titelFrame.location.replace( url );
}
//-->
