<!--
function okiniiri() {
	if( ( navigator.appVersion.indexOf("MSIE") > 0)  && 
	( parseInt( navigator.appVersion ) >= 4 ) ) {
	window.external.AddFavorite( location.href, "えんじ色通り" );
	}
}
function wakaran(){
        alert("ハッスルハッスル!!");
}
function clock(){
	time = new Date();

	year = time.getFullYear();
	month= time.getMonth() + 1;
	day  = time.getDate();
	hour = time.getHours();
	min  = time.getMinutes();
	sec  = time.getSeconds();

	if(year < 1000){year = year +1900}
	if(month< 10){month= "0" +month}
	if(day  < 10){day  = "0" +  day}
	if(hour < 10){hour = "0" + hour}
	if(min  < 10){min  = "0" +  min}
	if(sec  < 10){sec  = "0" +  sec}

	document.ark.disp1.value="  " + year + "/" + month + "/" + day + " " + hour + ":" + min + ":" + sec;

	setTimeout("clock()",1000);
}
//-->
