function fill(ids){
	if (document.getElementById('o'+ids)) {
		if (document.getElementById('o'+ids).style.display=='inline') document.getElementById('o'+ids).style.display='none';
		else document.getElementById('o'+ids).style.display='inline';
	}
}