<!--
//Copyrights
var mydate = new Date();
var message="© Copyright " + mydate.getYear() + " P. Dijkstra, all rights reserved";
function click(a) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (a.which == 3) {
alert(mesage);
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->