 <!--時計表示--> function Clock3(){myDate=new Date();myyear=myDate.getFullYear();mymonth=myDate.getMonth()+1;myday=myDate.getDate();myhour=myDate.getHours();myminute=myDate.getMinutes();mysecond=myDate.getSeconds();if (myyear<1000) {myyear+=1900}if (myhour<10) {myhour="0"+myhour}if (myminute<10) {myminute="0"+myminute}if (mysecond<10) {mysecond="0"+mysecond}document.myform3.myclock3.value=" "+myyear+"/"+mymonth+"/"+myday+"　"+myhour+"："+myminute+"："+mysecond+"";setTimeout("Clock3()",1000);}<!--ポップアップ-->function subWin1(){window.open("google_map.html","window1","resizable=no,menubar=no,directories=no,status=no,location=no,width=540,height=590");}
