//THIS CODE IS COPYRIGHT 2002 DREAMSCHEME SOLUTIONS.

var message="All rights to this website are reserved.\nCopyright 2002 DreamScheme Solutions."; // Message for the alert box
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;
}
}
}
