//Disable right mouse click for content protection

var message="WARNING - The content of this website is protected by registered copyrights with the U.S. Copyright Office.  Any unauthorized use of the images, wording or other content is subject to statutory fines, sanctions and or attorney's fees mandated by the United States government. Logos and Seal images are registered trademarks with the United States Patent and Trademark Office. Unauthorized use will result in trademark infringement. If you wish to use content or logos with approval, please contact us.";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 