<html>
<head>
<title>Date Type Constructor Example</title>
<script type="text/javascript">
//January 1, 2000 at midnight in local time
var y2k = new Date(2000, 0);
alert(y2k.toLocaleString());
//May 5, 2005 at 5:55:55 PM in local time
var allFives = new Date(2005, 4, 5, 17, 55, 55);
alert(allFives.toLocaleString());
</script>
</head>
<body>
</body>
</html>