<!-- Copyright (c) Ormskirk & Croston Beekeepers Branch 2006-2008. All rights reserved.
function goback()
	{
	this.write=goback_write;
	}

function goback_write()
	{
	if (!window.history)
		return;
	if (window.history.length==0)
		return;
	// Still gets here on Firefox 1.5.x?
	if ((navigator.userAgent).indexOf("Firefox")!=-1 && window.history.length==1)
		return;
	document.write('<A HREF="javascript:history.back(-1)">[Back]<\/A>');
	}
//!-->