function changebg(a,stat,level)
	{
	if(document.all || document.getElementsByTagName)
		{
		if (level == 1)
			{
			if (stat) col = '#cd4516';
			else col = '#de8a57';
			}
		else
			{
			if (stat) col = '#cd4516';
			else col = '#5f6eb0';
			}
		a.style.backgroundColor = col;
		}
	return false;
	}


function change(a,stat)
	{
	if(document.all || document.getElementsByTagName)
		{
		if (stat) col = '#a5acd5';
		else col = '#254e9c';
		a.style.color = col;
		}
	return false;
	}
