function getTime2(){
    today = new Date();
    year = today.getFullYear();
    month = today.getMonth()+1;
    date = today.getDate();
    youbi = today.getDay();
    hours = today.getHours();
    minutes = today.getMinutes();
    day = new Array("日","月","火","水","木","金","土");
    //時刻表示
    document.write(month+"/"+date);
}

