FYI:
useful java script that i use with this program.
http://rainbow.arch.scriptmania.com/scripts/month.html
***** STEP 1 *****
<!-- Insert the onLoad event handler into your <BODY> tag -->
<BODY OnLoad="monthPage()">
***** STEP 2 *****
<!--Then copy and paste below into <HEAD> of your HTML document -->
<SCRIPT type="text/javascript">
/*
Month of Year Redirection - Script
Visit http://rainbow.arch.scriptmania.com/scripts/
for this script and many more
*/
<!-- Begin
function monthPage() {
today = new Date();
m = new Array
("January.html","February.html","March.html","April.html","May.html","
June.html","July.html","August.html","September.html","October.html","
November.html","December.html");
window.location = m[today.getMonth()];
}
// End -->
</script>
<p><font face="arial" size="-2">Javascripts provided</font><br><font
face="arial, helvetica" size="-2"> by <a
href="http://rainbow.arch.scriptmania.com/scripts/">Rainbow
Arch</a></font></p>