var message="This website and all of it's contents are owned and licensed by CyberMark International.\nAll contents are Copyrighted and not available for download or use on any other web site with out permission from CyberMark International\n\nCyberMark International Inc.\nAll rights reserved © 2004."; // 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;