﻿//////////////////////////////////////////////////////////////////////////////////////
var message="The design, style, content, and context of this media is copyrighted by NewMedia Group USA.   NewMedia Group USA assumes no responsibility for errors or omissions in this publication or other documents which are referenced by or linked to this publication.  All images are Copyrighted by NewMedia Group USA, New York, NY 10022 and may not be used without written permission.  For authorization contact NewMediaGroup@mac.com  ";
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;
//////////////////////////////////////////////////////////////////////////////////////


//////////////////////////////////////////////////////////////////////////////////////