// JavaScript Document<script type="text/JavaScript">

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function embedSwf(file,width,height) {
	document.writeln('<object data="' + file + '" width="' + width + '" height="' + height + '" type="application/x-shockwave-flash"><param name="movie" value="' + file + '"><param name="quality" value="high"><param name="wmode" value="opaque"><param name="bgcolor" value="#FFFFFF"></object>');
}

function checkResult(){
	
	//各選択値の、1桁目を取得
	var year = (document.getElementById("year")[document.getElementById("year").selectedIndex].value) %10 ;
	var mon = (document.getElementById("mon")[document.getElementById("mon").selectedIndex].value) %10 ;
	var day = (document.getElementById("day")[document.getElementById("day").selectedIndex].value) %10 ;
	
	//合計の1桁目を取得
	var result = (year+mon+day) %10 ;
	
	var str = new Array("水","光","火","奏","地","天","風","空","海","気") ;
	document.getElementById("result").value = str[result]+"流生" ;
}