var fDesc=new Array();
fDesc[0] = "It is a Computer software for pigeon club or federation race management. It is Easy to use with built-in help.
Main features:
- Record all races for the season or delete after the objection date has passed - you choose.
- Assign up to 10 pool values with splits for up to 5 birds sharing the pool.
- Points can be awarded to up to the first 40 birds with the points money distribution defined as you want.
- Automatic calculation of points money distribution according to your definitions.
- "Pools taxes" can be set to what you want removed to organisation coffers.
- Record as much or as little detail about each member as is needed.";
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 = '';
}
}