function showHideSections(TargetSection){
	if  (document.getElementById(TargetSection).style.display == "none"){ 
			document.getElementById(TargetSection).style.display = "block";
			textSwap=TargetSection.substring(4);
		    var a=document.getElementById(textSwap);
		    a.innerHTML = "<div id='MoreInfo'>Click Here to Hide Info</div>";
		} else {
	if  (document.getElementById(TargetSection).style.display == "block"){ 
			document.getElementById(TargetSection).style.display = "none";
			textSwapAlt=TargetSection.substring(4);
		    var b=document.getElementById(textSwapAlt);
		    b.innerHTML = "<div id='MoreInfo'>Click Here for More Info</div>";
		}
	}
}


