function show(pageName)
{
if ( pageName == "agenda" )
	{
	leftPage = "agenda/programme.php";
	rightPage = "agenda/programme.php?next=1";
	}
else if ( pageName == "contact" )
	{
	leftPage = "contact.html";
	rightPage = "location.html";
	}
else if ( pageName == "history" )
	{
	leftPage = "history.html";
	rightPage = "reviews.html";
	}
else if ( pageName == "menu" )
	{
	leftPage = "menu_light.html";
	rightPage = "menu_strong.html";
	}
else if ( pageName == "sightings" )
	{
	leftPage = "sightings.html";
	rightPage = "reviews.html";
	}


parent.leftF.location = leftPage;
parent.rightF.location = rightPage;
}

function loadLocation()
{
if ( parent.rightF.location.href.indexOf("location.html") == -1 )
	{
	parent.rightF.location = "location.html";
	}
}