var fDesc=new Array();
fDesc[0] = "T-Works Manager is a Shop Management Solution built in Filemaker for the Screen Printing, Embroidery and Decorated Apparel Industry. Send emails directly from T-Works including PDF attachments using customizable email templates. Preview attachments before sending. Mockup artwork on apparel mockup templates. Resize & position the art for an accurate representation.
Check the status of multiple jobs on one screen and find where any order is fast! View your production schedule on a calendar in day, week and month views. Enter labor and material costs and then calculate profit on a job.";
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 = '';
}
}