// JavaScript Document
 function show(obj) {
		document.getElementById(obj).style.display = 'inline';
	}
   
	function hide(obj) {
		document.getElementById(obj).style.display = 'none';
	}
