function change_state(id,state) {
	var d = document.getElementById(id);
	if (d) {d.style.display=state;}
}
