var fDesc=new Array();
fDesc[0] = "SmSw is designed to be a sailmakers toolbox, containing the necessary software tools to enable the sailmaker to design and compute the individual panels of a given sail, with the desired 3-D shape.
SmSw works together with other Autometrix programs, such as Pattern Smith and Plotter Pilot, to enable the sailmaker to generate other sail parts, and to nest and plot/cut the panels and parts.";
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 = '';
}
}