function OFFICES_show_childs( numb ) {
	var tmp_div = getElement( "alltext_" + numb );
	if( tmp_div ) {
		if( tmp_div.style.display=="none"){
			tmp_div.style.display="block"}
		else{
			tmp_div.style.display="none"}
		}
	}
