tdefault = "#cdca95";
tover = "#660000";

function tmenuclick(theurl)	{
	document.URL = theurl;
}

function changebackcolor(position,button)	{
	if (position == "over")	{
		button = eval("document.all.button" + button);
		button.style.backgroundColor = tover;
		button.style.color = "#ffffff";
	}
	if (position == "out")	{
		button = eval("document.all.button" + button);
		button.style.backgroundColor = tdefault;
		button.style.color = "#000000";
	}
}
