function show(Num){
	if (document.all){
		//IE;
		if (document.all[("li_" + Num)].className == "show_li") {
			document.all[("li_" + Num)].className = "hide_li";
		} else {
			document.all[("li_" + Num)].className = "show_li";
		}
		return true;
	}
	if (document.getElementById){
		//Mozilla;
		if (document.getElementById(("li_" + Num)).className == "show_li") {
			document.getElementById(("li_" + Num)).className = "hide_li";
		} else {
			document.getElementById(("li_" + Num)).className = "show_li";
		}
		return true;
	}
	return true;
}