<!--
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 subWinimode(){
window.open("http://www.isesima.jp/toushiso/i/","sample","width=200,height=300 scrollbars=yes");
} // -->

<!--
 
// <script> 〜 </script> までを <head></head> 内に入れ
// <body> に onload="background()" を追加する
 
// *********************** 個別設定 +++++++++++++++++++++++++ //
 
// 背景にする画像（相対パス or 絶対パス / 最後は , を入れない）
BG = new Array(
	"http://www.isesima.jp/toushiso/kabe.gif",
	"http://www.isesima.jp/toushiso/kabe1.gif",
	"http://www.isesima.jp/toushiso/kabe2.gif",
	"http://www.isesima.jp/toushiso/kabe3.gif"
);
 
// 表示位置（X座標 Y座標を半角スペースで分ける / 単位：[ px | % | em | pt ] ）
POS = "0% 0%";
 
// 背景の繰り返し（repeat | repeat-x | repeat-y | no-repeat）
REP = "repeat";
 
// 背景の固定（fixed：固定 | scroll：非固定）
ANC = "fixed"
 
// ************************ 設定終了************************* //
 
 
// 内部処理
BGN = Math.floor(Math.random()*BG.length);
BGI = "url('" + BG[BGN] + "')"
 
function background() {
	if (document.body) { // document.bodyが実行できない場合は無視
	document.body.style.backgroundImage = BGI;
	document.body.style.backgroundPosition = POS;
	document.body.style.backgroundRepeat = REP;
	document.body.style.backgroundAttachment = ANC
	}
}
 
// -->