var curdate = new Date()
var year = curdate.getYear()

var message="This website and all of it's contents are owned and licensed by Rhino Sports, Inc.\nAll contents are Copyrighted and not available for download or use on any other\nweb site without permission from Rhino Sports, Inc.\n\nRhino Sports, Inc.\nAll Rights Reserved\nCopyright 2001-" + year; // 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;