var fDesc=new Array();
fDesc[0] = "E-Playbook is a 'windows' computer program that is used to help football coaches draw football plays (X's & O's) and to print playbook pages. It was created by a high school football coach to save you time, help you draw better football plays, print your football playbook pages faster, and save you money.
E-Playbook avoids the 'typical' Windows 'black magic' tricks. While it is a very powerful tool, it was specifically designed for all football coaches - even coaches whose technology comfort zone is limited to a typewriter and/or a pencil & cocktail napkin.";
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 = '';
}
}