var message = 	"(c) EBC - European BMX Connection\n" +
		"\n"+
		"No part of this site may be\n" +
		"reproduced in any form by\n" +
		"internet, intranet, print,\n" + 
		"photoprint, microfilm or\n" +
		"any other means without\n" +
		"written permission from\n" +
		"the authors.\n";

function click(i)
{
if (document.all)
{
if (event.button == 2)
{
alert(message);
return false;
}
}
if (document.layers)
{
if (i.which == 3)
{
alert(message);
return false;
}
}
}
if (document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;