// JavaScript Document
function toggleMenu(self, obj, isShow) {
	var _this = document.getElementById(obj);
	if (_this) {
		_this.style.display = isShow ? "block" : "none";
		
	}
}
