// JavaScript Document

function hs(itemID, iState) {
	htmlItem = document.getElementById(itemID);
	if (htmlItem) {
		if (iState == 0) {  // hide
			htmlItem.style.display = 'none';
		}
		else {  // show
			htmlItem.style.display = '';
		}
	}
}
