var fDesc=new Array();
fDesc[0] = "Developed to make Microdor Ltd. clients more competitive on the market by providing them the modern technologies in the apparel design.
Main features:
- Store your patterns on computer, instead of using working room;
- Construct your patterns without drawing board and instruments;
- Create and modify patterns for less time;
- Work from everywhere, just bring the laptop with you;";
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 = '';
}
}