// 	LOCKS RIGHT MOUSE CLICK ON PAGE

	var owner="Site content © Englewood Park Poll Dorsets";
	var maker = "Design and maintenance by Pagination Design Services";
                var webaddress = "www.pagination.com.au";
	var message = owner + " " + maker + " " + webaddress;
	function click(e) { //3.0
		if (document.all) {
			if (event.button == 2 || event.button == 3 || event.button == 6 || event.button == 7) {
				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;

//	FUNCTION TO OPEN WINDOW OF CERTAIN SIZE

	function openwindow(HtmlFile,WindowWidth,WindowHeight)
		{
		var param="screenX=50,screenY=50,width="+WindowWidth+",height="+WindowHeight+",toolbar=no,menubar=no,scrollbars=yes,resisable=yes";
		displaywindow = window.open(HtmlFile,"DisplayWindow",param);
		displaywindow.reload
        	}


//    TO DISPLAY UPDATE INFORMATION

	function dateupdated()
		{
		var modifieddate=owner + " - updated " + document.lastModified + "<br>" + maker + " <a href='http://" + webaddress + "'>" + webaddress + "</a>";
		document.write(modifieddate);
		}



