var fDesc=new Array();
fDesc[1] = "provides you with range of features like formatting options, highlight keywords, background and font color, font styles, print option, save as GIF option, Auto copy and many more.";
fDesc[2] = "color coded. A very useful Visual Editor is included in the application for watching the conversion results and for possible necessary retouches on the generated image. Output resulting image can be resized for matching any picture container.";
fDesc[3] = "to create ASCII Art in an easy manner, as well as to edit any ASCII Art picture. All the created pictures can be rotated and flipped around.";
fDesc[4] = "includes an ASCII editor for direct drawing on a grid, using the ASCII characters shown below the grid. Users can create figures, pictures, etc. on their own imagination.";
fDesc[5] = "image, and press the button. Within seconds, the image will be converted into text mosaic art. This program can help hide secret messages in images, and also combine art with words.";
fDesc[6] = "written to help the people who needs to see the ASCII art in the old-fashioned way the DOS does.";
fDesc[7] = "can be saved, sent as a picture, inserted into documents or printed. Each text character takes the individual color of the small area it is replacing and the original picture will be recognized.";
fDesc[8] = "With this program, users can take an image into it and have it processed into a file of color-coded text characters that are combined to resemble the image.";
fDesc[9] = "application for ASCII Art creation. Art words, signatures or photos can easily generated with this small but powerful program. ASCII signatures are useful for being used along with emails or other shared documents.";
fDesc[10] = "original image. an HTML file of color-coded text characters, that when combined, resemble an image. It is an ASCII Art Phot";
fDesc[11] = "can be created from scratch, or you can use Imagetrix to convert images to text for further manipulation with TextDraw.";
fDesc[12] = "You can convert picture or text into beautiful ASCII art.";
fDesc[13] = "Animations easily with the help of it. Magic ASCII Studio can take an image and process it to Colored text photos ...";
fDesc[14] = "images before converting them to enhance the conversion process. Saved drawings can be edited with TextDraw.";
fDesc[15] = "help you design you own ASCII Art.Change any section of picture to any color.Save it to many format. Make a ASCII ART animation.Multiple undo redo .Zoom in ,Zoom out.FigFont Import.ASCII Art Library.";
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 = '...';
}
}