{
document.write('<tr>');
document.write('<td height="44" class="dateCell" style="border-bottom-style: solid; border-bottom-width: 1px; " bordercolor="#FFFFFF" colspan="2" width="100%">            ');

                           var mydate=new Date()
                           var year=mydate.getYear()
                           if (year < 1000)
                               year+=1900
                               var day=mydate.getDay()
                               var month=mydate.getMonth()
                               var daym=mydate.getDate()
                           if (daym<10)
                               daym="0"+daym
                               var dayarray=new Array("Sun.","Mon.","Tue.","Wed.","Thu.","Fri.","Sat.")
                               var montharray=new Array("Jan.","Feb.","Mar.","Apr.","May","Jun.","Jul.","Aug.","Sep.","Oct.","Nov.","Dec.")
                               document.write("<small><font color='FFFFFF' size ='1' face='Verdana'>"+dayarray[day]+" - "+montharray[month]+" "+daym+", "+year+"</font></small>")


document.write('<br><img src="" width="156" height="0"></td>');
document.write('</tr><tr>');
document.write('<td class="fillTd1"  width="81%" width="229" height="30" style="border-bottom-style: solid; border-bottom-width: 1px; " bordercolor="#FFFFFF" class="fillTd3"   colspan="2">');
document.write('<a href="home.htm" class="fillTd3">Home</a></td></tr>');
}