
var myName="copyright.js";			// name of this file for nesting purposes

var message="Images/text/sound © Copyright 2000-2007\nGMD/CoastalCoaches\n----------------------------------\n\nfeedback @ Sussex-Transport.co.uk";

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

// -------------------------------



