//--------------- change the style's background color --------

function changecolor(stylename, targetcolor)
{
	if (document.all)
	{
		document.all[stylename].style.backgroundColor=targetcolor;
	}
	if (document.layers)
	{
		document.id.stylename.all['backgroundColor']=targetcolor;
	}
}
