function stopthief(ie) { var warning = "This Function is Disabled. Pages are Copyright 2008-2009 Trinity Brass Co.";
if (navigator.appName == 'Netscape' && ie.which == 3) {
alert(warning);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(warning);
return false;
}
return true;
}
document.onmousedown = stopthief;
