VBScript Countdown

Countdown

<html>
<body>

Countdown to year 2000:<BR><BR>

<script type="text/vbscript">
mdate=cdate("1/1/2000 00:00:00")
document.write("It is " & DateDiff("m", Now(), mdate) & " months to year 2000!<br>")
document.write("It is " & DateDiff("d", Now(), mdate) & " days to year 2000!<br>")
document.write("It is " & DateDiff("h", Now(), mdate) & " hours to year 2000!<br>")
document.write("It is " & DateDiff("n", Now(), mdate) & " minutes to year 2000!<br>")
document.write("It is " & DateDiff("s", Now(), mdate) & " seconds to year 2000!<br>")
</script>
</p>

</body>
</html>