function toggle(strObj) {
	var obj;
	obj = document.getElementById("div-" + strObj);
	if (obj.style.display == 'none') {
		obj.style.display = 'inline';
	} else {
		obj.style.display = 'none';
	}
}