// This script determines the browser type and displays and company logo
// in a format specific to that browser.  This process normalizes the logo
// across Netscape Navigator and Microsoft Internet Explorer.  Other browsers
// will default to the MSIE settings, which may or may not work as desired.
if ( navigator.appName == "Netscape")
  {
     document.write('<tr><td valign="top" class="h1_n" nowrap>RESCOM</td></tr>');
     document.write('<tr><td valign="top" class="h2_n" nowrap>Architectural, Inc.</td></tr>');
     document.write('<tr><td valign="top" class="logo_n" nowrap>Residential and Commercial Architecture</td></tr>');
  }
  else
  {
     document.write('<tr><td valign="top" class="h1" nowrap>RESCOM</td></tr>');
     document.write('<tr><td valign="top" class="h2" nowrap>Architectural, Inc.</td></tr>');
     document.write('<tr><td valign="top" class="logo" nowrap>Residential and Commercial Architecture</td></tr>');
  }
