function hidden(id){
	obj=return_by_id(id+'full');
	if (obj.style.display=='none') {
		obj.style.display='';
		obj=return_by_id(id+'desc');
		if (obj) { obj.style.display='none'; }
	} else if (obj.style.display=='') {
		obj.style.display='none';
		obj=return_by_id(id+'desc');
		if (obj) { obj.style.display=''; }
	}
}