// One-Off Alert Script © Bruce M. Gittings / Gazeteer for Scotland (www.geo.ed.ac.uk/scotgaz/)
Msg = "Images and text are Copyright © Scotland from the Roadside 2002-"+new Date().getFullYear()+". \r\rScotland from the Roadside is provided for personal and non-commercial \ruse and you may not without prior permission use our text or \rimages on a web site, or for any commercial purpose. \r\rFuther information can be found on the Copyright, Terms & Conditions \rpage linked from the copyright statement at the foot of each page. \r\rClicking OK restores normal use of the right-click menu on this page."
DoneIt = false; IsNS = navigator.appName=="Netscape";
document.onmousedown = DoIt;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (IsNS&&parseInt(navigator.appVersion)<5) window.onmousedown = DoIt;
function DoIt(a) { if (DoneIt) { return true }
else if ((IsNS&&a.which>1)||(navigator.appName=="Microsoft Internet Explorer"&&(event.button>1))) { DoneIt=true; alert(Msg); return false } }