  function ValidateInput(){
	 
	myOption=-1;
    for (i=0; i<send.sex.length; i++) {
      if (send.sex[i].checked) {
      myOption = i;
      }
    }
    if (myOption == -1) {
      alert("请选择您的性别！");
      return false;
    }
    
	if (send.year.value==""){
	   alert("请选择年份！");
	   return false;
	}
    
	if (send.month.value==""){
	   alert("请选择月份！");
	   return false;
	}
	if (send.day.value==""){
	   alert("请选择日期！");
	   return false;
	}
	if (send.pid.value==""){
	   alert("请选择占卜项目！");
	   return false;
	}
    
        
	return true;

  }
function OpenWin(url,title) { 
  window.open (url,title, "height=413, width=500,top=200,left=300 toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
}
function getPostURL(){


  if (send.sex[0].checked) {
    sex="1";
  }else{
    sex="0";
  }
  return "zhanbu.php?sex="+sex+"&year="+send.year.value+"&month="+send.month.value+"&day="+send.day.value+"&pid="+send.pid.value;
}
