<!--

  function WriteTop()
  {
    document.write("<table width=100% height=20% border=0 cellspacing=0 cellpadding=0>");
    document.write("<tr><td align=CENTER valign=MIDDLE>");
    document.write("<span style='font-family: Monotype Corsiva; color: #009f00; font-size: 384%'>LeBaron Brothers Audio, LLC</span>");
    document.write("<br />");
    document.write("<span style='font-family: Ariel; color: #ffffff; font-size: 100%'>Tube and Solid-State Audio Amplifier Repair</span>");
    document.write("</td></tr>");
    document.write("</table>");
  }
 
  function WriteCopyRight(year, month, day)
  {
    var d=new Date();
    // document.write(d.getFullYear());
    
    document.write("<tr><td align=CENTER>");
    document.write("<span style='font-family: Ariel; color: #ffffff; font-size: 80%'>(c)LeBaron Brothers Audio, LLC (2006-" + d.getFullYear() + "), last update: " + year + month + day + "</span>");
    // document.write("</td></tr>");

    // document.write("<tr><td align=CENTER>");
    document.write("<br><br>");
    document.write('<a href="https://www.facebook.com/pages/LeBaron-Brothers-Audio-LLC/193013784062"><img src="./facebook.jpg" height="20" width="80"></a>');
    document.write("</td></tr>");
  }

  function ShowOptions(x)
  {
    var option=["LBA home", "about us", "what we offer", "our rates", "warranty work", "contact us", "directions", "useful links", "pics", "for sale"];
    var link=["./default.html", "./about.html", "./offer.html", "./rates.html", "./warranty.html", "./contacts.html", "./directions.html", "./links.html", "./pics.html", "./forsale.html"];
    
    document.write("<table width=100% height=5% border=3 cellspacing=0 cellpadding=2>");
    document.write("<tr style='font-family: Comic Sans Ms; color: #ffffff; font-size: 120%' align=CENTER>");
    for (i=0; i < option.length; i++)
    {
      document.write("<td width=10%>");
      if (option[i] != x)
      {
        document.write('<a href="' + link[i] + '">' + option[i] + '</a>');
      }
      else
      {
        document.write('<span title="you are here">' + option[i] + '</span>');
      }
      document.write("</td>");
    }

    document.write("</tr>");
    document.write("</table>");
  }

  
//-->

