// JavaScript Document


	function show(show) {
	var hide_h = document.getElementById(show);
	  hide_h.style.display = "block";
	}
	
	function hide(hide) {
	var hide_h = document.getElementById(hide);
	  hide_h.style.display = "none";
	}
	

