//var CurrentCell = "";
var CurrentPage = 1;	// global switch used from the cover page
/*
function HiliteTCell(idnum)			// called from index
{
//return;
	if (idnum != "38")	// no changes on clicking a link that opens a new window
	{
		var cellid = "cell" + idnum;
		if (CurrentCell != "")			// restore CurrentCell to notmal
		{
			var tcellp = document.getElementById(CurrentCell);
			if (tcellp) 
			{	
//				tcellp.style.backgroundColor = "transparent";
//=				tcellp.style.backgroundImage = "url(img/MenuCell4C.gif)";	// SPRING = 4C   summer = 6C   winter=2
				tcellp.style.color = "#000000";
			}
		}
		tcell = document.getElementById(cellid);	// highlite cellid
		if (tcell) 
		{
//=				tcell.style.backgroundImage = "url(img/MenuCell4D.gif)";		// SPRING = 4D  summer = 6D  winter = 1
				tcellp.style.color = "#66FFAA";
//---			tcell.blur();		// removes the dotted focus rectangle     no it doesn't
			CurrentCell = cellid;
		}
	}
}
*/
function HiliteMenuCell(idnum)		//called from a subpage
{
//alert("HiliteMenuCell  " + parent.CurrentCell + "  " + idnum);
 if (document.getElementById)
 {
	if (idnum != "38")	// no changes on clicking a link that opens a new window
	{
		var cellid = "cell" + idnum;
		if (parent.CurrentCell != "")
		{
			var tcellp = parent.document.getElementById(parent.CurrentCell);
			if (tcellp) 
			{	
//=				tcellp.style.backgroundImage = "url(img/MenuCell4C.gif)";	// spring = 4C  summer = 6C  winter = 2
				tcellp.style.color = "#0000F0";
			}
		}
		tcell = parent.document.getElementById(cellid);
		if (tcell) 	// the hilite cell
		{
//=			tcell.style.backgroundImage = "url(img/MenuCell4D.gif)";		// spring = 4D   winter = 1  summer = 6D
			tcell.style.color = "#22AA22";
			parent.CurrentCell = cellid;
		}
	}

	if (idnum == 1) parent.document.getElementById("tabtextid").style.height = "500px";				//home
	else if (idnum == 2) parent.document.getElementById("tabtextid").style.height = "500px";		//app chapter
	else if (idnum == 3) parent.document.getElementById("tabtextid").style.height = "1200px";		//events
	else if (idnum == 4) parent.document.getElementById("tabtextid").style.height = "1500px";		//tutorial
	else if (idnum == 5) parent.document.getElementById("tabtextid").style.height = "750px";		//chatroom
	else if (idnum == 6) parent.document.getElementById("tabtextid").style.height = "800px";		//dowser
	else if (idnum == 7) parent.document.getElementById("tabtextid").style.height = "800px";		//questions
	else if (idnum == 8) parent.document.getElementById("tabtextid").style.height = "400px";		//join
	else if (idnum == 9) parent.document.getElementById("tabtextid").style.height = "1200px";		//sales
	else if (idnum == 10) parent.document.getElementById("tabtextid").style.height = "800px";		//newsletters
	else if (idnum == 11) parent.document.getElementById("tabtextid").style.height = "800px";		//ASD
	else if (idnum == 12) parent.document.getElementById("tabtextid").style.height = "600px";		//articles
	else if (idnum == 13) parent.document.getElementById("tabtextid").style.height = "400px";		//donate
	else if (idnum == 14) parent.document.getElementById("tabtextid").style.height = "600px";		//links
 }
}


