function docolor( obj, color )
{
	obj.style.backgroundColor = color;
}

function dostyle( a_obj, a_style )
{
	alert(a_obj.style.name);
//	a_obj.style = a_style;

}




