var fDesc=new Array();
fDesc[0] = "Design the rug with many drawing tools.
- Drawing tools -- triangles, rectangles, circles
- Free-hand drawing and erase
- Fill with solid, hatching or raised outline
- Zoom
- Grid lines based on warps
- Flexible snaping for cleaner drawing
- Copy and Paste
- Multiple levels of Undo
- Color Replacer
- Associate Yarn company or custom title with palette
- No limit on number of custom colors and names
- Can create color palette based on colors in image
- Can map colors in image to closest color in your palette";
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 = '';
}
}