<script language=javascript>
<!--
  var now = new Date();
  var now = new Date();
  var year = now.getFullYear();
  var month = now.getMonth();
  var day = now.getDate();
  var hours = now.getHours();
  var minutes = now.getMinutes();
  var second = now.getSeconds();  alert(month+"/"+day+"/"+year+" "+hours+":"+minutes+":"+second);
  
//-->
</script>