	function CloseWin(){
		window.close();
	}

	function oritatami(id){

		for( i=1; i<8; i++ ){

			Name = "area0" + i;

			if( id == Name ){
				document.getElementById(Name).style.display = "block";
				document.forms[1].SrcScArea.value = i;
			} else {
				document.getElementById(Name).style.display = "none";
			}

		}

	}
