		function Hide(str) {
		x = document.getElementById(str);
		x.style.display = 'none';
		}
		
		function Show(str) {
		x = document.getElementById(str);
		x.style.display = 'block';
		}