<!--//

/*
All Scripts © Ray Baddeley (www.companionsworldwide.com)
*/

var message="NUMBERAMA * Copyright Warning *  \n\nOur websites and software programs are protected by copyright law and international treaties.\n\nUnless permission has been granted... Unauthorised reproduction or distribution of any portion of it may result in severe civil and criminal penalties, and will be prosecuted to the maximum extent possible under the law.";
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;

//--> 