// JavaScript Document

function expandSection(id){
	var mySection = document.getElementById(id);
	
	if(mySection.style.display == "none")
		mySection.style.display = "block";
		
	else
		mySection.style.display = "none";
}
