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