function setInnerHTML(sSection, sContent) {
	if (!sSection) return;
	if (!sContent) sContent = "";
	var obj = document.getElementById(sSection)
	if (obj) {
		obj.innerHTML = sContent;
	}
}
