function setDisplaySwitch(name_o)
{
	var element_o = document.getElementById(name_o);
		element_o.style.display = '';
};

