// JavaScript Document

var choosing = "none";

function openNewWindow (winName)
{
	var w = window.open (winName, "GatheringOfDivineChild");
}

function jAction(choice)
{
alert ("In jAction(); choosing=" + choosing + " choice=" + choice);
	return false;
}

function goBack()
{
//alert ("In goBack()");
	history.back();
	return false;
}


