var fDesc=new Array();
fDesc[0] = "Clipboard Agent was originally designed to be a text to speech utility that reads from the clipboard.
It has been expanded to read aloud and auto increment verses of the Bible.
All bibles were downloaded from bibledatabase.org and converted into a format suitable for this program. I cannot guarantee that there are no mistakes in any of these Bibles.
There are options useful for the visually impaired but also allow the user to view and interact with the Agent from a distance.";
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 = '';
}
}