if (top.location != location) {

	top.location.href = document.location.href;

	}

function onloadStuff() {

	window.defaultStatus='This has been a production of Project Geoff Taylor 2 and Absolute Magic.';

	if (document.getElementById) {

		document.getElementById("phasechooser").setAttribute("style","display:inline;");

		}

	}

function showPhase(phaseNumber) {

	if (phaseNumber == 1) {

		document.getElementById("phase1nav").setAttribute("style","display:inline;");

		document.getElementById("phase2nav").setAttribute("style","display:none;");

		document.getElementById("phase3nav").setAttribute("style","display:none;");

		}

	if (phaseNumber == 2) {

		document.getElementById("phase1nav").setAttribute("style","display:none;");

		document.getElementById("phase2nav").setAttribute("style","display:inline;");

		document.getElementById("phase3nav").setAttribute("style","display:none;");

		}

	if (phaseNumber == 3) {

		document.getElementById("phase1nav").setAttribute("style","display:none;");

		document.getElementById("phase2nav").setAttribute("style","display:none;");

		document.getElementById("phase3nav").setAttribute("style","display:inline;");

		}

	}