var fDesc=new Array();
fDesc[0] = "Camtech's Quick Spell is a fast program that utilizes the MS Word spell check function to quickly check the spelling of words or entire documents without having to open a bulky program. Type in the word or copy and paste documents from within the program.
YOU MUST HAVE MS WORD INSTALLED TO USE THIS PROGRAM.";
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 = '';
}
}