  function disp(){

        var now = new Date();

        var year = now.getYear(); // 年
        var month_num = now.getMonth(); // 月
        var date = now.getDate(); // 日
        var hour = now.getHours(); // 時
        var min = now.getMinutes(); // 分
        var month;

        switch(month_num){
        case 0:
            month = 'Jan';
            break;
        case 1:
            month = 'Feb';
            break;
        case 2:
            month = 'Mar';
            break;
        case 3:
            month = 'Apr';
            break;
        case 4:
            month = 'May';
            break;
        case 5:
            month = 'Jun';
            break;
        case 6:
            month = 'Jul';
            break;
        case 7:
            month = 'Aug';
            break;
        case 8:
            month = 'Sep';
            break;
        case 9:
            month = 'Oct';
            break;
        case 10:
            month = 'Nov';
            break;
        case 11:
            month = 'Dec';
            break;
        }

        // 数値が1桁の場合、頭に0を付けて2桁で表示する指定
        if(date < 10) { date = "0" + date; }
        if(hour < 10) { hour = "0" + hour; }
        if(min < 10) { min = "0" + min; }

        // フォーマットを指定（不要な行を削除する）
        var watch1 = hour + ':' + min + ' ' + date + '-' + month + '-' + year + ' (JP)';

        document.all["timeDisp"].innerHTML = watch1;

        if(document.layers){
        document.layers["timeDisp"].document.open();
        document.layers["timeDisp"].document.write('watch1');
        document.layers["timeDisp"].document.close();
        }

        setTimeout("disp()", 1000);

        }

        var new1,win1p,win1;
        function backopen1 (img) {

        if (win1p=="on") {
        if (new1.closed) {} else {new1.close();}
        }

        win1p = "on";

        new1=window.open("", "newwin", "resizable=0,width=702,height=520");
        new1.document.clear();
        new1.document.write("<html><head><meta http-equiv=Content-Type content=\"text/html; charset=utf-8\"></head><body background="+img+">");
        new1.document.writeln("</body></html>");
        new1.document.close();
        }

        var new2,win2p,win2;
        function backopen2 (img) {

        if (win2p=="on") {
        if (new2.closed) {} else {new2.close();}
        }

        win2p = "on";

        new2=window.open("", "newwin", "resizable=0,width=710,height=525");
        new2.document.clear();
        new2.document.write("<html><head><meta http-equiv=Content-Type content=\"text/html; charset=utf-8\"></head><body background="+img+">");
        new2.document.writeln("</body></html>");
        new2.document.close();
        }
        function OnLoadEvent()
        {
            document.forms[0].submit();
        }