var checkArray = {};

function titleClick(input) {
	if ("undefined" != checkArray[input.id]) {
	  var checkboxIds = checkArray[input.id];
		for (var i=0;i<checkboxIds.length;++i) {
			var checkbox = document.getElementById(checkboxIds[i]);
			if (checkbox) {
				checkbox.checked = true;
			}
		}
	}
}

function inputClick(input,titleId) {
	if (false == input.checked) {
		var checkbox = document.getElementById(titleId);
		if (checkbox) {
			checkbox.checked = false;
		}
	}
}

