function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 2 || e.which == 3)) {
alert('The design and formatting of this site are Copyright © Roll-of-Honour.com as are many of the photographs. Please feel free to copy this information for personal use; but, if it is copied and used elsewhere, we would like this source to be acknowledged, please, because we have spent hundreds of pounds on the research and establishment of this site.');
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button==2 || event.button == 3)) {
alert('The design and formatting of this site are Copyright © Roll-of-Honour.com as are many of the photographs. Please feel free to copy this information for personal use; but, if it is copied and used elsewhere, we would like this source to be acknowledged, please, because we have spent hundreds of pounds on the research and establishment of this site.');
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
