VBScript Display the current month and day

Display the current month and day

<html>
<body>

<script type="text/vbscript">
document.write("Today's day is " & WeekdayName(weekday(date)))
document.write("<BR>The month is " & MonthName(month(date)))
</script>

</body>
</html>