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