var fDesc=new Array();
fDesc[0] = "TrackMaster Plus Pro is the latest edition of the extremely popular and powerful handicapping software. Exclusive ratings and stats make it the most comprehensive handicapping product around.
Main features:
-speed Figures & Class Ratings
- Jockey & Trainer Stats
- Custom Power Ratings
- Sire & Dam Stats
- Pace Ratings
- Sorting & Filtering
- Lifetime Past Performances
- Video Replays ($)";
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 = '';
}
}