// JavaScript Document


function showHide(e){
	obj = document.getElementById(e);
	if (obj.style.display == "none" || obj.style.display == ""){
		obj.style.display = "block";
		/*obj.style.overflow = "scroll";
		obj.style.height = "300px";
		obj.style.padding = "1em";*/
	} else {
		obj.style.display = "none";
	}
}