function showObject(obj){
			document.getElementById(obj).style.visibility='visible';
			document.getElementById(obj).style.height='';
			
		}

function hideObject(obj){
			document.getElementById(obj).style.visibility='hidden';
			document.getElementById(obj).style.height='0px';
		}