<!--
function display (category) {
	var trungcategory = document.getElementById(category);
	if (trungcategory.className=="hide") {
		trungcategory.className="show";
	} else {
		trungcategory.className="hide";
	}
}
-->

