
function show_list(name, sum, index) {
	// window.alert(name + ";" + sum + ";" + index);
	var e = document.getElementById(name + index);
	for (var i = 1; i < sum + 1; i++) {
		if (i !== index) {
			var o = document.getElementById(name + i);
			o.style.display = "none";
		} else {
			e.style.display = "block";
		}
	}
}
function show_flash() {
	window.showModalDialog("include/index_flash.jsp", "", "dialogWidth:490px;dialogHeight:440px;help:0;resizable:no;scroll:on;status:0;");
}

