	<script type="text/javascript">
	function show(toShow, toHide) {
		hideWhat=document.getElementById(toHide);
		hideWhat.style.display='none';
		showWhat=document.getElementById(toShow);
		showWhat.style.display='block';
	}
	</script>