Joined: November 9th, 2004, 10:35 am Posts: 49 Location: Canterbury UK
|
You can do a work around by including this javascript in the Head section of your html pages.
<script language="JavaScript"> <!--
var message="Sorry, that function is disabled."; // Message for the alert box
// Don't edit below!
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> </script>
_________________ Andy
Hayward Design
E: andy@hayward-design.co.uk
T: 01227 721864
Opus Professional Version v6.00
Build Date Jun 18 2007 15:01:07
Windows XP Professional - Build 2600 Service Pack 2
Total Memory 1024 Mb
DirectX Version 9.0 or better
AMD Athlon
|
|