function my_bgcolor(dore)
		{
		if((document.getElementById) && (!document.all))
			document.getElementById("ki").style.backgroundColor=dore;
		else if(document.all)
			document.all("ki").style.backgroundColor=dore;
		}
