// JavaScript Document
	function display_block(chi) {
		document.getElementById(chi).style.display = "block";
	}
	function hide_block(chi) {
		document.getElementById(chi).style.display = "none";
	}
