function provideAnswer(id){

var answerContainer = document.getElementById('col2faq');

  switch (id)
  {
  case 1:
    answerStr = "<h4>Do I need a chimney for my stove?</h4>All of our stoves require a chimney, either a masonry or a stainless steel chimney.";
    break;
  case 2:
    answerStr = "<h4>What fuel can I burn in the stove?</h4>Mulberry multi-fuel stoves will happily burn coal, anthracite or any smokeless fuel, wood, turf, or peat briquettes.";
    break;
  case 3:
    answerStr = "<h4>How many radiators will the stove heat?</h4>The products page gives the heat output of each boiler stove and its radiator capacity.";
    break;
  case 4:
    answerStr = "<h4>What size of a stove do I need?</h4>Use the calculator on the stove selector page to determine the stove that’s right for you.";
    break;
  case 5:
    answerStr = "<h4>Are the stoves available in Enamel finish?</h4>Yes, all stoves are available in both Painted and Enamel finishes.";
    break;
  case 6:
    answerStr = "<h4>What colours are available?</h4>Matt Black Painted, and High Gloss Black Enamel.";
    break;
  case 7:
    answerStr = "<h4>Will the stove fit on my hearth?</h4>The JOYCE and YEATS will fit onto a standard 18” Hearth, but the BECKETT needs a larger hearth.";
    break;
  case 8:
    answerStr = "<h4>What should the stove sit on?</h4>The stove MUST sit on a non-combustible surface that is at least 20mm thick. This base should extend beyond the ashtray at the front of the stove. The “footprint” of each stove is given on the “Products” page.";
    break;
  case 9:
    answerStr = "<h4>Is the stove Back or Top outlet?</h4>All stoves in the Mulberry Multi-Fuel range can be installed as either “Top” or “Back” outlet.";
    break;
  case 10:
    answerStr = "<h4>Who will install the stove for me?</h4>Your Dealer will be able to recommend a suitable Installer in your area. In case of difficulty contact our office and we will provide a list of installers.";
    break;
  case 11:
    answerStr = "<h4>If I take out a back boiler will I have to redo the plumbing?</h4>No, the plumbing connections used for the back boiler can be used to connect the stove.";
    break;
  case 12:
    answerStr = "<h4>What are the stoves made from?</h4>All Mulberry stoves are made from high quality cast iron with a special heat resistant cast iron being used in areas where flame comes into contact with the iron.";
    break;
  case 13:
    answerStr = "<h4>Who’ll service my stove and how often should it be serviced?</h4>Your local Authorised Mulberry dealer will recommend a serviceman. In case of difficulty contact our office and we will provide a list of approved servicemen. The stove should be thoroughly cleaned once each year, ideally before the start of the winter. This is a relatively simple operation and can be carried out by anyone.";
    break;
  case 14:
    answerStr = "<h4>Can I buy a Mulberry Stove over the internet?</h4>No. Mulberry stoves are only sold by local Authorised dealers who can assure your satisfaction and safety by providing you with the correct stove for your needs, explaining its function adequately and dealing with installation, service and warranty issues.";
    break;
  case 15:
    answerStr = "<h4>What are BTU's, and how do they compare with Kw?</h4>Btu's (British Thermal Units) are a standard of measurement that represents the heat value of any type of energy used to create heat. The amount of fuel that a stove will consume per hour is calculated with the Btu value of the fuel it uses to determine the output of that appliance. Btu values of any type of energy are determined by the actual amount of heat required to increase the temperature of one pound of water by one degree Fahrenheit. For rough calculations 3,400 Btu’s are equivalent to 1Kw.";
    break;
  case 16:
    answerStr = "<h4>What is radiant heat?</h4>Radiant heat is transmitted from a heat source via rays just like rays of sunlight. These rays pass through the air without heating it since only solid objects can absorb the heat they transmit. Dark colours absorb more radiant heat than lighter colours that reflect more of it. This is why light coloured clothing is cooler than dark coloured clothing.";
    break;
  case 17:
    answerStr = "<h4>What is conduction heat?</h4>This is the transfer of heat through a body or substance. All of our stoves conduct heat to the air as it comes into contact with the hot glass and casting surface.";
    break;
  case 18:
    answerStr = "<h4>What does Convection Heating mean?</h4>This describes the transfer of heat by heating, then moving a substance. Simply put, the heat from our stoves is distributed via convection. This is when the air in front of the stove absorbs heat, becomes buoyant and rises to the ceiling. This draws cooler air behind it, mostly along the floor, which in turn, absorbs the heat and rises up, pushing the already warmed air along the ceiling. As long as there is a source of heat, this cycle will continue, constantly raising the overall temperature of the room";
    break;
  case 19:
    answerStr = "<h4>Is there a warranty with your products?</h4>Mulberry Stoves are designed with reliability and simplicity in mind. Our Quality Assurance System is there to ensure that you receive a heating product that provides a lifetime of warmth and we provide an extended Warranty on stoves as summarised below. For full warranty conditions see our Warranty registration card.";
    break;
 case 20:
    answerStr = "<h4>Warranty Information (Summary) </h4>Firebox castings on all Mulberry appliances are covered by warranty for a period of three years from the date of purchase. External castings, not directly in contact with the fire, such as hob, sides, ashtray, front and fire door are covered against manufacturing defects for a period of five years. Glass is covered against thermal breakage for a period of two years. Refractory liners (fire bricks) are covered for a period of two years. Electrical components such as blowers and switches are covered for one year.";
    break;

  }

answerContainer.innerHTML = answerStr;

}
