function writeHeader(Title, Font, SpecialChar, DisplayDateTime)
{
 now=new Date();
 dateformat='MM/dd/yyyy';
 datestr=formatDate( now, dateformat);
 timeformat='hh:mm a'
 timestr=formatDate( now, timeformat);

 if ((navigator.appName=="Microsoft Internet Explorer") && (navigator.userAgent.indexOf('Opera')==-1)) 
 {

   document.writeln('<td class="HDRLABEL">'+Title+'</td>');
   document.writeln('<td class="HDRSYMBOL"><font face='+Font+'>'+SpecialChar+'</td>');

   if (DisplayDateTime)
   {
     document.writeln('<td class="HDRDATELABELG">&amp;</td>');
     document.writeln('<td class="HDRDATE">'+datestr+'</td>');
     document.writeln('<td class="HDRTIMELABELG">¹</td>');
     document.writeln('<td class="HDRTIME">'+timestr+'</td>');
   }
   else
   {
     document.writeln('<td class="HDRSYMBOL">&nbsp;</td>');
     document.writeln('<td class="HDRSYMBOL">&nbsp;</td>');
     document.writeln('<td class="HDRSYMBOL">&nbsp;</td>');
     document.writeln('<td class="HDRSYMBOL">&nbsp;</td>');
   }
 }
 else
 {
  document.writeln('<td class="HDRLABEL">'+Title+'</td>');

  if (DisplayDateTime)
  {
    document.writeln('<td class="HDRDATELABELT">Date:</td>');
    document.writeln('<td class="HDRDATE">'+now.getMonth()+'/'+ now.getDay()+'/'+now.getFullYear()+'</td>');
    document.writeln('<td class="HDRTIMELABELT">Time:</td>');
    document.writeln('<td class="HDRTIME">'+now.getHours()+':'+now.getMinutes()+'</td>');
  }

 }
}				
