if (window.name != "Menu" && window.name != "Diary")	{
	document.cookie="mynccpage=" + window.location;
	if (window.name != "Main") {
		window.top.location.replace("frames.html");
	}
}

//Sets menu button text to "loaded" class when BODY onLoad is triggered
//All other menu functions are on Menu page
function menuReset(thisPage)	{
	myMenu=window.top.Menu.document.getElementsByTagName("TD");
	//Use window.top not window.parent for cases where there may be several frame levels
	for (var x=0; x<myMenu.length; x++)	{
		if (myMenu[x].id==thisPage)	{
			myMenu[x].className="loaded";
			window.top.Menu.crntPage=thisPage;	//This covers the case when thisPage is reached via "Contents" table on Home page
		}
		else	{
			myMenu[x].className="out";
		}
	}
	if (thisPage=="all")	{
		 //Special case for pages not on Menu buttons, eg specific galleries. Enables all Menu buttons
		window.top.Menu.crntPage="nobutton";
	}
}// Function to avoid email addresses being harvested by robots.
function emadd(whose)	{
var club="northamptoncameraclub";
var type="org";
var country="uk";
var dot=".";
var at="@";
var code=whose+at+club+dot+type+dot+country;
return code;
}


