var fDesc=new Array();
fDesc[0] = "Software package enabling the handling of a bowls clubs match fixtures with many other extras. Any club season can span a total of eight months starting on a configurable month. You can print the following, which is compiled from all entered data; booking list for all home fixtures; fixture list. Club member details include registration details, with player history and the option to print a graphical chart of player history. Other club contact details, not relating to any present club played.";
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 = '';
}
}