var fDesc=new Array();
fDesc[0] = "ScoutCard Xpress is a new 'add-on accessory' for E-Playbook that will save you time and make your job easier:
-Print any play (your plays, example plays, & our "pre-drawn" plays) as a scout card (8.5" x 11" landscape) without having to take the time to build a new Playbook Page
-Print as many as 50 scout cards at one time
-Print a 'script' of your selected scout cards
-Set the Page Format options (Page Title, LOS & Field Lines options, Hash Marks, Field Numbers) for all printed scout cards at one time
-Capbility to Copy & Paste a list of your scout plays into Word, Excel, PowerPoint, Word Perfect, etc...";
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 = '';
}
}