inc_date_js =
'<script type="text/javascript" language="javascript">\n<!'
+ '-- Begin\nvar months=new Array(13);\nmonths[1]="January";\n'
+ 'months[2]="February";\nmonths[3]="March";\nmonths[4]="Apri'
+ 'l";\nmonths[5]="May";\nmonths[6]="June";\nmonths[7]="July";'
+ '\nmonths[8]="August";\nmonths[9]="September";\nmonths[10]="'
+ 'October";\nmonths[11]="November";\nmonths[12]="December";\n'
+ 'var time=new Date();\nvar lmonth=months[time.getMonth() +'
+ ' 1];\nvar date=time.getDate();\nvar year=time.getYear();\ni'
+ 'f (year < 2000)    // Y2K Fix, Isaac Powell\nyear = year '
+ '+ 1900; // http://onyx.idbsu.edu/~ipowell\ndocument.write'
+ '( lmonth + " ");\ndocument.write(date + ", " '
+ '+ year);\n// End -->\n</script>\n';

// end_var_declaration
document.write(inc_date_js);