var mainmenubgcolor="palegoldenrod";
var mainmenutextcolor="mediumblue";
var mainmenuactivebg="goldenrod";
var mainmenuactivetxt="mediumblue";
function setmainmenucolors(bgcolor, textcolor, activebg, activetxt)
{
	mainmenubgcolor=bgcolor;
	mainmenutextcolor=textcolor;
	mainmenuactivebg=activebg;
	mainmenuactivetxt=activetxt;
}
function selectlink(textObj, tdId) 
{
	if (document.getElementById(tdId))
	{
		document.getElementById(tdId).style.background=mainmenuactivebg;
	}
	textObj.style.color=mainmenuactivetxt;
}
function leavelink(textObj, tdId) 
{
	if (document.getElementById(tdId))
	{
		document.getElementById(tdId).style.background=mainmenubgcolor;
	}
	textObj.style.color=mainmenutextcolor;
}
