function getFeature(id)
{

var feature_array = new Array();

feature_array['A'] = '<b>A<br /><br />----------------------------<br /><br />Wall Panels</b><br /><br />These are identical to your shell scheme panels and can be used to sectionalise your stand. Each panel is 2.50m high x 1.00m wide. Tinted glass panels (not shown) are also available.';
feature_array['B'] = '<b>B<br /><br />----------------------------<br /><br />Lockable Door</b><br /><br />Offices or storerooms can be self-contained using a lockable door - 1 key supplied. Each unit is 1.00m wide with a 2.00m high opening.';
feature_array['C'] = '<b>C<br /><br />----------------------------<br /><br />Curtained Entranceway</b><br /><br />Similar to the Lockable Door (B) but with a curtain, normally coloured blue, instead of a door.';
feature_array['D'] = '<b>D<br /><br />----------------------------<br /><br />Hat and Coat Rack</b><br /><br />A set of six hat and coat hooks set on a rail 1.00m long.';
feature_array['E'] = '<b>E<br /><br />----------------------------<br /><br />Flat Shelf</b><br /><br />Constructed from white melamine faced chipboard, these shelves are 1.00m long and 300mm deep; they are supported on metal brackets.';
feature_array['F'] = '<b>F<br /><br />----------------------------<br /><br />Angled Shelf</b><br /><br />Similar to the Flat Shelf (E) but with a retaining lip at the front edge. These shelves are supported on angled brackets and are ideal for literature, pamphlets, etc.';
feature_array['G'] = '<b>G<br /><br />----------------------------<br /><br />Garment Rail</b><br /><br />1.00m long, fixed to the stand wall.';
feature_array['H'] = '<b>H<br /><br />----------------------------<br /><br />Chain Hanging Packs</b><br /><br />These enable exhibitors to fix their own display panels (up to 25kg) on chains from the top of the wall';
feature_array['I'] = '<b>I<br /><br />----------------------------<br /><br />Literature Dispenser</b><br /><br />A4 with zig-zag literature rack in black.';
feature_array['J'] = '<b>J<br /><br />----------------------------<br /><br />Lockable Counter</b><br /><br />Free-standing 1.00m long x 500mm deep x 1.00m high, constructed using Octanorm components and supplied with central shelf and lockable doors.';
feature_array['K'] = '<b>K<br /><br />----------------------------<br /><br />Lockable Showcase</b><br /><br />Specification as Lockable Counter (J), but fitted with top quarter glass.';
feature_array['L'] = '<b>L<br /><br />----------------------------<br /><br />Muslin Ceiling</b><br /><br />A white flameproof muslin ceiling can be fixed above your stand. Colours other than white can be supplied at an additional charge.';
feature_array['M'] = '<b>M<br /><br />----------------------------<br /><br />Nyloop Colour Change</b><br /><br />The colour of your shell scheme standard and additional wall panels can be changed to an available colour choice. These panels are Velcro-compatible.';
feature_array['N'] = '<b>N<br /><br />----------------------------<br /><br />Raised Platforms</b><br /><br />A 100mm high platform can often add to that first impression, as well as hide unsightly plumbing, electrics and other services. The platform is finished with a black painted skirting board - floor covering to be arranged separately. Platforms are available by the square metre; all have 1m x 1m ramps.';
feature_array['O'] = '<b>O<br /><br />----------------------------<br /><br />Flooring</b><br /><br />This item is 18mm chipboard, or similar flaps, to be used when a colour change of carpet is required in a hall or venue that is permanently carpeted. Aluminium edging should be ordered from your carpet contractor. Again, flooring is available by the square metre.';
feature_array['P'] = '<b>P<br /><br />----------------------------<br /><br />Night Sheeting</b><br /><br />A night sheet (not shown) provides added security.';
feature_array['Q'] = '<b>Q<br /><br />----------------------------<br /><br />Display Board</b><br /><br />1200 x 1000mm finished in Velcro-compatible loop nylon - optional colour choice.';

var thefeature = feature_array[id];

var useragent = navigator.userAgent;

   if (useragent.indexOf('Opera') != -1)
   {
   alert('Sorry, this feature is not available for your browser.');
   }
   else if (document.getElementById)
   {
   document.getElementById('standFeature').innerHTML = thefeature;
   }
   else if (document.all)
   {
   document.all('standFeature').innerHTML = thefeature;
   }
   else
   {
   alert('Sorry, this feature is not available for your browser.');
   }

}