var message="The Contents and Graphics on this page are Copyright 2004ŠAsplin Builders or being used under Licence. If you wish to use duplicate for any commercial purpose contact the webmaster. Use for educational purposes is explicitly granted"; // Message for the alert box
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;
