Dates, MM-DD-YYYY


Today:



<script>
<!--
var today_date= new Date()
var month=today_date.getMonth()+1
var today=today_date.getDate()
var year=today_date.getYear()
//document.write("Today's date is: ")
document.write(month+"-"+today+"-"+year)
//--> </script>

Free JavaScripts provided
by Winfolinx.com



Back