var fDesc=new Array();
fDesc[1] = "of related words, with one-click look up in almost any Windows program. The database has over 150 000 root words.";
fDesc[2] = "try to solve the puzzles and join the figures on their places. You will have to connect some twigs to get the original pattern.";
fDesc[3] = "and edit them accordingly. All the editing features helps the user to cut, copy or paste, create mirror image, rotate and remove the stitches from the chosen part of the design and much more.";
fDesc[4] = "almost any graphic image and convert it into a cross-stitch pattern. You will be able to specify the size and number of colors. PCStitch will automatically map them to the floss. You can convert simple images or complex photographs.";
fDesc[5] = "that they should be used when making decisions. The Autochartist program will do a lot of the work for you. Since it is capable of recognized patterns and even emerging patterns in real time, you will not have to spend your time constantly looking for new trades to make.";
fDesc[6] = "integrates with Adobe Photoshop, Paint Shop Pro Photo and other photo-editing applications. It gives you the power to apply any imaginative effect to an image surface without disturbing its original details.";
fDesc[7] = "or adding new text or object to it. The application also gives user the liberty to resize images, trim excessive wasted space, flip the objects or change the effects.";
fDesc[8] = "from the board by connecting those that have the same pattern (image, figure). You have to complete this task before the time expires. Some settings are available, like selecting the pattern to be displayed on the tiles and choosing among three difficulty levels.";
fDesc[9] = "pattern to be printed, that is in Colored Stitches or Squares, in Black and white or Colored Symbols and much more. Print more than one pattern in one page, import patterns from saved files or download them from the web site PatternsOnline.com, and get ready to cross stitch.";
fDesc[10] = "want. Of course, the design process is 100% visual with excellent drag&drop features. If you are an Eclipse user, you can get the corresponding plugin to get the most powerful combination of IDEs.";
fDesc[11] = "options this program has, your creativity will be unlimited. Whether you use it for your job or you are a person who enjoys playing with images, this tool is very useful. It also comes handy to print patterns and give them to children for them to color.";
fDesc[12] = "picture, transfer picture onto a pattern, and put text into your pattern. It includes a pencil for freeform drawing, eraser, dropper, flood filler; draw lines, triangles, diamonds, pentagons, hexagons, octagons, ellipses, rectangles, etc. Also you can print and export patterns.";
fDesc[13] = "from your existing pictures. This excellent tool provides you with a range of features like 3D Effects, Bump adjustment, Normal maps, Scalable output, Alpha transparency, Export to Adobe Photoshop and many more.";
fDesc[14] = "which are commonly used in the Imperial measurement system. Plus, the radius of circumferences can be calculated and much simpler operations can be done, such as additions, subtractions, divisions, etc. It also converts cm to inches and vice-versa.";
fDesc[15] = "create beautiful patterns of any image that you wish to create. Earlier the task of cross stitch or rya rug patterns making was very time consuming and boring, but using this program you can easily speed up the process.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}