Clickable Pop Up Clock


The code to add this clock to your site
<script language="javascript">
<!--
function timer() {
var today=New Date()
alert("The Date is:"+today)
}
//-->
</script>
</head>
<body>
<center>
<form>
<input type="button" value="Click Here for Date and Time"
onClick="timer()">
</form>
</center>