<html> <head> <script type="text/javascript"> <!-- //Dieses Skript stammt von Michael Mailers JavaScripts //URL: http://www.webaid.de/js -- eMail: mm@webaid.de //Bitte entfernen Sie diesen Vermerk nicht ! if (document.layers){ window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP) window.onmousedown=rightclick; window.onmouseup=rightclick; function rightclick(e) { if (e.which == 3) { // Put right mouse code here alert('Sorry: Diese Funktion ist deaktiviert.'); return false; } else { return true; } } } if (document.all){ function click() { if (event.button==2) { alert('Sorry: Diese Funktion ist deaktiviert.') } if (event.button==3) { alert('Sorry: Diese Funktion ist deaktiviert.')} } document.onmousedown=click } // --> </script> </head> <body text="#000000" bgcolor="#cccccc"> <p>Dieses Script sperrt die rechte Maustaste bei Netscape und beim MSIE ab Version 4.0.</p> </body> </html>