<!--function kakunin() {  if (document.Lover.Year.value == "") {    alert("西暦が入力されていません。");    document.Lover.Year.focus();    return(false);  }  if (document.Lover.Month.value == "") {    alert("月が入力されていません。");    document.Lover.Month.focus();    return(false);  }  if (document.Lover.Date.value == "") {    alert("日付けが入力されていません。");    document.Lover.Date.focus();    return(false);  }  if (document.Lover.Year.value < 1915) {    alert("日付けが古すぎます。");    document.Lover.Year.focus();    return(false);  }  if (document.Lover.Year.value > 2001) {    alert("日付けが新しすぎます。");    document.Lover.Year.focus();    return(false);  }  if (document.Lover.Month.value == 0) {    alert("入力データが間違っています");    document.Lover.Month.focus();    return(false);  }  if (document.Lover.Month.value >= 13) {    alert("入力データが間違っています");    document.Lover.Month.focus();    return(false);  }  if (document.Lover.Date.value == 0) {    alert("入力データが間違っています");    document.Lover.Date.focus();    return(false);  }  if (document.Lover.Date.value >= 32) {    alert("入力データが間違っています");    document.Lover.Date.focus();    return(false);  }  if ((document.Lover.Year.value * 0)  != 0) {   alert("入力データが間違っています");    document.Lover.Year.focus();    return(false);  }  if ((document.Lover.Month.value * 0)  != 0) {   alert("入力データが間違っています");    document.Lover.Year.focus();    return(false);  }  if ((document.Lover.Date.value * 0)  != 0) {   alert("入力データが間違っています");    document.Lover.Year.focus();    return(false);  }  return(true);}// -->