function c_state(item_name)
{
	var i_obj=document.getElementById(item_name)
	
	if(i_obj.style.display=="none")i_obj.style.display=""
	else i_obj.style.display="none"
}