	function ShowDetails(DisplayFlag, DisplayNum) {
		InputDetailArea[0].style.display = "none";
		InputDetailArea[1].style.display = "none";
		InputDetailArea[2].style.display = "none";
		InputDetailArea[3].style.display = "none";
		InputDetailArea[4].style.display = "none";
		InputDetailArea[5].style.display = "none";
		switch(DisplayFlag) {
			case "none":
				InputDetailArea[DisplayNum].style.display = "block";
				break;
			case "block":
				InputDetailArea[DisplayNum].style.display = "none";
				break;
			}
		}
