
function GetRandomSupporter()
{
  var randomNo = Math.random() * 6;

  switch (Math.round(randomNo))
  {
    case 0:
    {
      var s = "<strong>Apollo XL Cleaning Services</strong><br>Professional carpet and upholstery cleaners. Tel. Richard Crawford: 0118 9415987"
      break;
    }
    case 1:
    {
      var s = "<strong>Burleigh House Hotel</strong><br>Accommodation provider to the BOC for over 10 years. 7 Cliff Terrace, Hunstanton, Norfolk, PE36 6DY. Tel: 01485 533080"
      break;
    }
    case 2:
    {
      var s = "<strong>Frontier Agricultural Supplies</strong><br>Supplier of bird foods at competitive prices. Red Shute Mill, Hermitage, Newbury, RG18 9QU. Tel: 01635 204100"
      break;
    }
    case 3:
    {
      var s = "<strong><a href='http://www.jamesautos.co.uk'>James Autos</a></strong><br>Friendly reliable MoT Testing station. The Gamblers, Mole Road, Sindlesham, Berkshire, RG41 5DJ. Tel: 0118 9770 831"
      break;
    }
    case 4:
    {
      var s = "<strong><a href='http://www.lcegroup.co.uk'>London Camera Exchange</a></strong><br>Putting optics on the map in Berkshire. Discounts available to BOC members. 7 Station Road, Reading. Tel: 0118 9592149"
      break;
    }
    case 5:
    {
      var s = "<strong>Netley Landscapes</strong><br>Garden design and construction. Tel. Hugh Netley: 0118 9461701"
      break;
    }
    case 6:
    {
      var s = "<strong><a href='http://www.tverc.org/'>Thames Valley Environmental Records Centre</a></strong><br>Sharing wildlife information in Berkshire and Oxfordshire"
      break;
    }
  }

  document.write(s);
}