var fDesc=new Array();
fDesc[0] = "PatternMaker is a program that allows you to make custom clothing patterns.
Main features:
- No pattern making experience is necessary, you can purchase a "macro" (mini computer program that contains the pattern).
- The pattern is custom made to the measurements you enter into the computer.
- Print out the pattern on any printer or plotter.
- Change the pattern in the computer or on the paper pattern.
- Scan patterns from books, import them into PatternMaker and scale them up and down.
- Create your own macros with MacGen (Macro Generator).
- Most of all, it's fun to use!";
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 = '';
}
}