var message="This website and all of its contents are owned and licensed by DCA Media Solutions. All contents are copyrighted and not available for download or use on any other site. Copyright © 2010 DCA Media Solutions. All Rights Reserved.";
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;
