var fDesc=new Array(); fDesc[0] = "Bowrap is a program for recording the results of bowls teams.

It was designed for the sport of Crown Green Bowls, although it may also be suitable for Lawn Bowls and indoor teams. It is aimed at teams playing in leagues.

Look at the notice board in any bowls hut and you will see a variety of charts recording how the teams have been doing. Typically, people draw a grid and record each match in a new column. There are various efforts to calculate players’ averages as the season progresses, but it all tends to get a bit fiddly and mistakes often creep in.

Now that many bowlers have a PC, they have tried to use them to help solve the problem . This is a natural application for a spreadsheet, and modern ones (like Excel) can be used to produce a very neat summary, with all the data recalculated as you go along."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }