var fDesc=new Array();
fDesc[0] = "Easythreads™ is a windows-based program that keeps track of your threads and converts them from one brand to another.
It lets you enter the threads for a project into a listing, and then allows you to convert to other brands of threads. In a matter of seconds, you can convert all of the colors in your project or design to just a specific brand of thread, or to the threads you have already bought.
Or you can pick each thread match yourself, with a list of all the threads that match. It shows each color as a swatch, so you can really compare the threads easily. And if you want a closer view, you can enlarge the color swatch and compare it side-by-side to it’s match.";
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 = '';
}
}