<!--hiding from incompatible browser
     var today = new Date()
     var bkgd = "Sunday.jpg"
     var dow = today.getDay()
     var tble
     
     //foreground variables
     var today = new Date()
     var month = today.getMonth()
     var date = today.getDate()
     var year = today.getFullYear()
     var month_whole = "January"
     var year_whole = 2000
     var wholeDate = "today"
     
    
     // foreground figuring
     if (month == 0) {month_whole = "January"}
     if (month == 1) {month_whole = "February"}
     if (month == 2) {month_whole = "March"}
     if (month == 3) {month_whole = "April"}
     if (month == 4) {month_whole = "May"}
     if (month == 5) {month_whole = "June"}
     if (month == 6) {month_whole = "July"}
     if (month == 7) {month_whole = "August"}
     if (month == 8) {month_whole = "September"}
     if (month == 9) {month_whole = "October"}
     if (month == 10) {month_whole = "November"}
     if (month == 11) {month_whole = "December"}
     
    
     
     wholeDate = month_whole + " " + date + ", " + year
     
     // creating table
     tble = '<TABLE WIDTH="120" BORDER="0" CELLSPACING="2"';
     tble += 'CELLPADDING="0" HEIGHT="15">';
     tble += '  <TR>';
     tble += '    <TD WIDTH="120" HEIGHT="15" ALIGN="center" VALIGN="middle" BACKGROUND="';
     tble += bkgd;
     tble += '"><CENTER><FONT COLOR="#003399" FACE="Arial" SIZE="-1">';
     tble += wholeDate;
     tble += '    </FONT></CENTER></TD>';
     tble += '  </TR>';
     tble += '</TABLE>'

     document.write(tble)
     
     // end hiding-->