


//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
// Modified by RWD Feb 2005 http://www.racine-web.com


var message="This Website Brought to you by Discounted Wheel Warehouse!\n\n           http://www.discountedwheelwarehouse.com\n\nAll Content, images and CODE is copyrighted by DWW 2005\n";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
	alert(message+'1');
	window.open('http://www.discountedwheelwarehouse.com','_self');
return false;

			
			
// return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
window.open('http://www.discountedwheelwarehouse.com','_self');
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);window.open('http://www.discountedwheelwarehouse.com','_self');return false;")



