// JavaScript Document
<script type="text/JavaScript">
function hideById(type) {
	var id = document.getElementById(type);
	id.style.display = "none";
}	

function showById(type) {
	var id = document.getElementById(type);
	id.style.display = "";
}
</script>
