function StartUp () {
document.onmousedown = MouseDown;
window.status = "© Neath Archery Club";
}

function MouseDown(e) {

	return false;

// disable right mouse click
				
	if (event.button==2||event.button==3) {
	alert ("This site is Copyrighted by Neath Archery Club");
	return false;
}
}