// JavaScript Document

	function showSub(x){
		document.getElementById(x+"Sub").style.display = "block";
	}
	
	function hideSub(x){
		document.getElementById(x+"Sub").style.display = "none";
	}
