//more contents

function showMore(list_id) {
	if (document.getElementById(list_id).style.display == "none") {
		document.getElementById(list_id).style.display = "inline";
	} else {
		document.getElementById(list_id).style.display = "none";
	}
	return true;
}