		/* <!-- */
			function showHideDiv(id) {
				var moreID = document.getElementById(id);
			    
				if (moreID) {
				    // Check to see if we should show or hide
				    if (moreID.style.display == "block") {
					moreID.style.display = "none";
				    } else {
					moreID.style.display = "block";
				    }
				}
			}
			
		/* --> */
