Ciao ragazzi!
A causa di un servizio di hosting scadente, sono costretto a bloccare il tasto destro e lo scroll nel mio sito.
Per quanto riguarda il tasto destro, ho usato questo script:


</body>
<script language='JavaScript'>
<!--

var message="Tasto destro del mouse disabilitato!";

function clickIE4(){
if (event.button==2){
alert(message);
return false; } }

function clickNS4(e){
if (document.layers||document.getElementById&&!docume nt.all){
if (e.which==2||e.which==3){
alert(message);
return false; } } }

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>


Come potrei riadarrarlo per fare la stessa cosa con il tasto scroll?