<FORM>
<SELECT
NAME="dates"
SIZE=1>
<script
language="javascript"
type="text/javascript">
today
=
new
Date();
thismonth
=
today.getMonth()
+
1;
thisyear
=
today.getYear();
thisday
=
today.getDate();
maxdays=31;
if
(thismonth==4
||
thismonth==6
||
thismonth==9
||
thismonth==11)
{
maxdays=30
}
if
(thismonth==2)
{
if
((thisyear/4)!=parseInt(thisyear/4))
{
maxdays=28
}
else
{
maxdays=29
}
}
thismonth
=
""
+
thismonth
if
(thismonth.length
==
1)
{
thismonth
=
"0"
+
thismonth;
}
for
(var
theday =
0;
theday <=
maxdays;
theday++)
{
if
(theday
==
0)
{
document.write
("<OPTION
SELECTED> "+
thismonth +
"-"
+
thisday +
"-"
+
thisyear )
document.write
("<OPTION>
========")
}
else
{
var
thed =
""
+
theday
if
(thed.length
==
1)
{
thed =
"0"
+
thed;
}
document.write
("<OPTION>
"
+
thismonth +
"-"
+
thed +
"-"
+
thisyear)
}
}
</script>
</SELECT>
</FORM>