function switchVisibility(elementId, state){
	document.getElementById(elementId).style.display = state;
}
