Copyright="Sie wollen an den Quellcode?\nDann geben Sie sich mal Mühe!\n\nf.d." function IEBlocker() {if(event.button==2||event.button==3||event.button==6||event.button==7) {alert(Copyright);} } function NSBlocker(mk) {if (mk.which==3) {alert(Copyright);return false;} } function IEKeyBlocker() {if(window.event.keyCode==93) {alert(Copyright);} } function NSKeyBlocker(kd) {if(kd.modifiers & Event.CONTROL_MASK||kd.modifiers & Event.SHIFT_MASK) {alert(Copyright);} } if(navigator.appName.substring(0,9)=="Microsoft") { document.onmousedown=IEBlocker; document.onkeydown=IEKeyBlocker; } if(navigator.appName.substring(0,8)=="Netscape") { window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP) window.onmousedown=NSBlocker; window.onmouseup=NSBlocker; document.onkeydown=NSKeyBlocker; }