﻿
	function doClick() {
	}
	history.forward();
	function bunload() {
		window.onbeforeunload = null;

		alert("Nigel says: \n\nThis site is S-F-O.org.UK\n\nMay the Lord give you peace.\n\nPlease also visit the SFO GB website which is now available.\n\nSimply click *OK* and then 'Cancel' to see a link to that site.");

		window.location = "Homer.aspx";

		return "\nClick *OK* to CONTINUE on your original click,\n\n*CANCEL* below to see a link to the CURRENT SFO GB site instead.";

	}

	window.onbeforeunload = bunload;

 
	var backButtonPressed = 1;    

	function sortList() {
		backButtonPressed=0;
		document.form2.hiddenFieldName.name='sortButton';
		document.form2.submit();
	}


	function printSelectedEntry() {
		backButtonPressed=0;
		document.form2.hiddenFieldName.name='printButton';
		document.form2.submit();
	}


	function cancel() {
		backButtonPressed=0;
	 	document.form2.hiddenFieldName.name='cancelButton';
		document.form2.submit();
	}


	function help() {
		backButtonPressed=0;
		document.form2.hiddenFieldName.name='helpButton';
		document.form2.submit();
	}


	function goBack() {
		if (backButtonPressed == 1) {
			backButtonWasPressed();
		}
	}
	
	
	function backButtonWasPressed() {
		cancel();
	}

