<!-- hide this script from non-javascript-enabled browsers
// protect pages from right click

function right(e) {

if (navigator.appName == 'Netscape' &&

(e.which == 2 || e.which == 3)) {

alert('Mouse Right-click is disabled. Website content is copyrighted material. Please contact website administrator regarding your interest in our content.');

return false;

}

else if (navigator.appName == 'Microsoft Internet Explorer' &&

(event.button==2 || event.button == 3)) {

alert('Mouse Right-click is disabled. Website content is copyrighted material. Please contact website administrator regarding your interest in our content.');

return false;

}

return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=right;

//break out of a frameset

//if (top.frames.length != 0) parent.location.href = window.location.href;
// stop hiding --> 