<!-- Disable right-click and contextmenu -->
<!--
if (window.Event) // Only Netscape will have the CAPITAL E.
document.captureEvents(Event.MOUSEUP); // catch the mouse up event

function nocontextmenu()  // this function only applies to IE5 and above
{
 event.cancelBubble = true
 event.returnValue = false;
 return false;
}

function norightclick(nButton) // this function apllies to all other browsers
{
 if (window.Event) // again, IE or NAV?
 {
  if (nButton.which == 2 || nButton.which == 3)
  return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   nocontextmenu
  }
}
document.oncontextmenu = nocontextmenu;  // for IE5 and above
document.onmousedown = norightclick;  // for all others

<!-- Set default status of windows -->
window.defaultStatus = 'security.holzhofer.de'
