<!-- NO RIGHT CLICK -->
var now = new Date();
var info = "John's Place - Copyright JAPF (c) 2004 - " + now.getYear();
function click(e) {if (document.all) {if (event.button==2||event.button==3) {alert(info);
return false}};
if (document.layers) {if (e.which == 3) {alert(info);
return false}}};
if (document.layers) {document.captureEvents(Event.Mousedown)} document.onmousedown=click;

