function copyright(){
copyright="Copyright \251 2008 Uwharrie Technology, Inc.  All rights reserved.";
window.status = copyright;
return true;
}
if (document.layers)
document.captureevents(event.mouseover | event.mouseout)
document.onmouseover=copyright
document.onmouseout=copyright

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(copyright);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(copyright);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
