<html>
<head>
<title></title>
<script language="javascript">
var beg = new Date()
function count() {
var now= new Date()
var ct = parseInt((now.getTime()-beg.getTime())/1000)
document.fm_elapsed.count.value=parseInt(ct/60)+ ":" +ct%60
setTimeout("count()",1001);}
</script>
</head>
<body onLoad="count()">
<form name="fm_elapsed" mathod=post>
<input name="count" size=10>
</form>
</body>
</html>
|