//Danny Lee, danny_lee@telus.net
// Oct 2001
var message="We're sorry, the right-click feature has been disabled to prevent unauthorized use of our images. Reproduction of any part of this site requires the written consent of Driver's Edge Autosport Inc.";

// 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; 
//
 
