function show(id) {
	
		hideshow = document.getElementById(id);
		hideshow.style.display = 'block';
		
	}
	function hide(id) {
		hideshow = document.getElementById(id);
		hideshow.style.display = 'none';
    }

	

