<html>
<head>
<title>  </title>
</head>
<body>
<style type='text/css'>
<!--
.text { COLOR: red; FONT-FAMILY: 굴림; FONT-SIZE: 9pt;  }
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
startday = new Date();
clockStart = startday.getTime();
function initStopwatch() {
var myTime = new Date();
return((myTime.getTime() - clockStart)/1000);
}
function getSecs() {
var tSecs = Math.round(initStopwatch());
var iSecs = tSecs % 60;
var iMins = Math.round((tSecs-30)/60);
var sSecs ="" + ((iSecs > 9) ? iSecs : "0" + iSecs);
var sMins ="" + ((iMins > 9) ? iMins : "0" + iMins);
time.innerHTML = sMins+":"+sSecs;
window.setTimeout('getSecs()',1000);
}
//-->
</script>
<BODY onLoad="window.setTimeout('getSecs()',1);">
<div id="time" class="text"></div>
</body>
</html>
Posted by 알 수 없는 사용자
,