var message="PLEASE NOTE! This website and all content including images, text and testimonials contained within this site are protected by copyright laws. Unauthorized use of our material is strictly prohibited. Copyright 2005-2009 by Road-To-Wellness.com.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
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;
// -->
