Quote:
Today at 12:19 AM Yo. said this in Post #44
I don't think this will work on all browsers, dirtymerc, but try adding this to your headinclude after installing:
Code:
<script language=JavaScript>
<!--
function clickIE4(){
if (event.button==2){
assistant();
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
assistant();
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("assistant();return false")
// -->
</script>
|
thank you so much, it worked flawless!