var fDesc=new Array();
fDesc[0] = "PitchPad Pavilion makes it easy to score a match. You'll no longer have to hunt around for someone who knows how to score a match. With just three mouse clicks, you can record where the ball pitched, where it was struck to, and how many runs were scored.
User-friendly, flexible and reliable. Caters for a wide variety of disciplines (limited overs, 20-20, junior rules etc).Designed in partnership with coaches, scorers and players.
MAin fetures:
-Complete Match Analysis
-Partnership Analysis (using Wagon Wheels)
-Partnership Analysis (using Scoring Zones)
-Innings scorecards
-Wagon Wheels (simple version)
-Wagon Wheels (detailed version)
-Scoring Zone Analysis (simple version)
-Scoring Zone Analysis (detailed version)
- Worm graphs
-Manhattan graphs
-Partnership graphs";
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 = '';
}
}