<!--

function right(e) {

var msg = "Copyright 2010 Virginia Cross Connection Control, LLC. and respective licensors.  All rights reserved.";

if (navigator.appName == 'Netscape' && e.which == 3) {

alert(msg);  // Delete this line to disable but not alert user

return false;

}

else

if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {

alert(msg); // Delete this line to disable but not alert user

return false;

}

return true;

}

document.onmousedown = right;

//-->
