
function toggle(id){
	var element = document.getElementById(id);
	element.style.display = (element.style.display == 'block') ? "none" : "block";
}

