/* 生年月日入力 九星診断 */
  function InitDate() {
      var dateNow = new Date();
      var objYear = document.getElementById("pageYear");
	  var objMonth = document.getElementById("pageMonth");
	  var objDay = document.getElementById("pageDay");

	  objYear.options.length = 0;
	  for (var i = 1960;i<=dateNow.getFullYear(); i++) {
	    var tmpYear = new Option(i,i);
		objYear.options[objYear.options.length] = tmpYear;
	  }
	  
	  objYear.selectedIndex=15;
	  
	  objMonth.options.length = 0;	  
	  for (var j = 1; j <= 12; j++) {
	    var tmpMonth = new Option(j,j);
		objMonth.options[objMonth.options.length] = tmpMonth;
	  }	  

	  objDay.options.length = 0;	  
	  for (var k = 1; k <= 31; k++) {
	    var tmpDay = new Option(k,k);
		objDay.options[objDay.options.length] = tmpDay;
	  }	  
  }
  
  function GetDate() {
    var objYear = document.getElementById("pageYear");
	var objMonth = document.getElementById("pageMonth");
	var objDay = document.getElementById("pageDay");
	var objDateValue = document.getElementById("dateValue");
	
	var txtY = objYear.options[objYear.selectedIndex].text;
	var txtM = objMonth.options[objMonth.selectedIndex].text;
	var txtD = objDay.options[objDay.selectedIndex].text;
	
	//objDateValue.value = txtY + "/" + txtM + "/" + txtD;
	//alert(objDateValue.value);
	//一白水星
	if (txtY == 1963 || txtY == 1972 || txtY == 1981 || txtY == 1990 || txtY == 1999 || txtY == 2008) {
		if (txtM == 1) {
				//九紫火星
				window.location.href ='/uranai/fengshui9.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//九紫火星
				window.location.href ='/uranai/fengshui9.php';
			} else {
				//一白水星
				window.location.href ='/uranai/fengshui1.php';
			}
		} else {
			//一白水星
				window.location.href ='/uranai/fengshui1.php';
		}
	}

	//二黒土星   
	if (txtY == 1962 || txtY == 1971 || txtY == 1980 || txtY == 1989 || txtY == 1998 || txtY == 2007) {
		if (txtM == 1) {
			//一白水星
			window.location.href ='/uranai/fengshui1.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//一白水星
				window.location.href ='/uranai/fengshui1.php';
			} else {
				//二黒土星
				window.location.href ='/uranai/fengshui2.php';
			}
		} else {
				//二黒土星
				window.location.href ='/uranai/fengshui2.php';
		}
	}
	//三碧木星   
	if (txtY == 1961 || txtY == 1970 || txtY == 1979 || txtY == 1988 || txtY == 1997 || txtY == 2006) {
		if (txtM == 1) {
				//二黒土星
				window.location.href ='/uranai/fengshui2.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//二黒土星
				window.location.href ='/uranai/fengshui2.php';
			} else {
				//三碧木星
				window.location.href ='/uranai/fengshui3.php';
			}
		} else {
				//三碧木星
				window.location.href ='/uranai/fengshui3.php';
		}
	}
	//四緑木星   
	if (txtY == 1960 || txtY == 1969 || txtY == 1978 || txtY == 1987 || txtY == 1996 || txtY == 2005) {
		if (txtM == 1) {
				//三碧木星
				window.location.href ='/uranai/fengshui3.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//三碧木星
				window.location.href ='/uranai/fengshui3.php';
			} else {
				//四緑木星
				window.location.href ='/uranai/fengshui4.php';
			}
		} else {
				//四緑木星
				window.location.href ='/uranai/fengshui4.php';
		}
	}
	//五黄土星   
	if (txtY == 1968 || txtY == 1977 || txtY == 1986 || txtY == 1995 || txtY == 2004) {
		if (txtM == 1) {
				//四緑木星
				window.location.href ='/uranai/fengshui4.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//四緑木星
				window.location.href ='/uranai/fengshui4.php';
			} else {
				//五黄土星
				window.location.href ='/uranai/fengshui5.php';
			}
		} else {
				//五黄土星
				window.location.href ='/uranai/fengshui5.php';
		}
	}
	//六白金星   
	if (txtY == 1967 || txtY == 1976 || txtY == 1985 || txtY == 1994 || txtY == 2003) {
		if (txtM == 1) {
				//五黄土星
				window.location.href ='/uranai/fengshui5.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//五黄土星
				window.location.href ='/uranai/fengshui5.php';
			} else {
				//六白金星
				window.location.href ='/uranai/fengshui6.php';
			}
		} else {
				//六白金星
				window.location.href ='/uranai/fengshui6.php';
		}
	}
	//七赤金星   
	if (txtY == 1966 || txtY == 1975 || txtY == 1984 || txtY == 1993 || txtY == 2002) {
		if (txtM == 1) {
				//六白金星
				window.location.href ='/uranai/fengshui6.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//六白金星
				window.location.href ='/uranai/fengshui6.php';
			} else {
				//七赤金星
				window.location.href ='/uranai/fengshui7.php';
			}
		} else {
				//七赤金星
				window.location.href ='/uranai/fengshui7.php';
		}
	}
	//八白土星   
	if (txtY == 1965 || txtY == 1974 || txtY == 1983 || txtY == 1992 || txtY == 2001) {
		if (txtM == 1) {
				//七赤金星
				window.location.href ='/uranai/fengshui7.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//七赤金星
				window.location.href ='/uranai/fengshui7.php';
			} else {
				//八白土星
				window.location.href ='/uranai/fengshui8.php';
			}
		} else {
				//八白土星
				window.location.href ='/uranai/fengshui8.php';
		}
	}
	//九紫火星   
	if (txtY == 1964 || txtY == 1973 || txtY == 1982 || txtY == 1991 || txtY == 2000) {
		if (txtM == 1) {
				//八白土星
				window.location.href ='/uranai/fengshui8.php';
		} else if (txtM == 2) {
			if (txtD == 1 || txtD == 2 || txtD == 3) {
				//八白土星
				window.location.href ='/uranai/fengshui8.php';
			} else {
				//九紫火星
				window.location.href ='/uranai/fengshui9.php';
			}
		} else {
				//九紫火星
				window.location.href ='/uranai/fengshui9.php';
		}
	}  
  }