var fDesc=new Array();
fDesc[0] = "EuroCAD Pattern Designer is the software environment in which the designer's ideas are easily transformed into perfectly built and checked pattern projects.
Features:
- Quick and accurate pattern design, using basic design tools and advanced geometrical procedures;
- Advanced model design and make-up with simulation for darts, folds;
- Automatic and manual pattern grading;
- Pattern checking and verifying, measurement table, real time watcher;
- Pattern digitising, support for fast access digitising functions, vocal confirmation;
- Editor for technical documentation, including support for graphical add-ons;
- Import and export in/from international standard formats.";
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 = '';
}
}