function change(a,stat,level)
	{
	if(document.all || document.getElementsByTagName)
		{
		if (stat)
			{
			col = '#ee1100';
			if (level == 2) bg ='#d5c7ad';
			else bg = '#cebd9f';
			}
		else
			{
			col = '#ffffff';
			if (level == 2) bg ='#d5c7ad';
			else bg = '#b9a176';
			}
		a.style.backgroundColor = bg;
		a.lastChild.style.color = col;
		a.lastChild.style.backgroundColor = bg;
		}
	return false;
	}

