 function reload() {};

 var ms="Copyright QWD - All rights reserved / Alle Rechte vorbehalten!"
 function click(e) {
   if (document.all) {
    if (event.button == 2 || event.button == 3) { alert(ms); return false; }
   }
   if (document.layers) {
    if (e.which == 3) { alert(ms); return false; } // Netscape right mouse
    if (e.which == 2) { document.location="http://www.qwd.at/"; }
   }
 return true }

 function disableRightClick() { alert(ms); return false; } // Netscape 6 or 7

 if (document.layers) document.captureEvents(Event.MOUSEDOWN); 
 var browser = navigator.appName;
 if (browser == 'Netscape') {
   sp = navigator.appVersion.split(' ')[0];
   sp = Math.abs(-sp);
   if (sp >= 5.0) { document.oncontextmenu = disableRightClick; };
 };
 document.onmousedown=click;
