﻿function checkques_submit(){
         if (document.fques.ask.value == "") {
        alert("お問合せ内容を書き込んで下さい。")
        document.fques.ask.focus()
        return false
       }
    else if(document.fques.email.value == "") {
        alert("E-mail ｱﾄﾞﾚｽを入力して下さい。")
        document.fques.email.focus()
        return false
       }
     else{document.fques.submit()}

}

function Openwin(nf){
     window.open(nf,"",'left=10,top=60,scrollbars=yes,width=600,height=600,toolbar=no,resizable=yes');
} 
function Openwintok(nf){
     window.open(nf,"",'left=10,top=60,scrollbars=yes,width=750,height=500,toolbar=no,resizable=yes');
} 
 
function Openwinh(nf){
     window.open(nf,"",'left=230,top=20,scrollbars=yes,width=600,height=650,toolbar=no,resizable=yes');
}

  function mailcheck(str){
   return (str!=""&&str.match(/^[a-zA-Z0-9_\-\.]+@[a-zA-Z0-9_\-]+(\.[a-zA-Z0-9_\-]+)+$/)!=null);
}

   function printdate(){
    today = new Date();
    year = today.getYear();
    month = today.getMonth()+1;
    date = today.getDate();
    youbi = today.getDay();
    day = new Array("日","月","火","水","木","金","土");
    document.write( year+"年"+month+"月"+date+"日"+day[youbi]+"曜日");
  }


