var fDesc=new Array();
fDesc[1] = "able to create different versions of the picture: oil painting, aquarela, crayon, and other styles.";
fDesc[2] = "colors by a brush stroke; the program recognizes the object's border itself and tailors the new color to the grayscale tones of image.";
fDesc[3] = "BIOS scan codes being generated by the keyboard. Check your keyboards repeat rate and see each down and up stroke.";
fDesc[4] = "power-ups and go through the 18 challenging holes, collect as many points as you can, and unlock new characters to have more fun!";
fDesc[5] = "catalogue your images collections. Unlike other similar software tools, the information is embedded into the image, not into an external database. You can create your list of most-used keywords, and assign them to hot keys, to help you reuse them with just a single key stroke.";
fDesc[6] = "for children, Sketch Studio is unique in that it contains built-in drawing lessons.";
fDesc[7] = "this program, we will be able to learn 1945 jouyou kanji. We can learn the kanji meaning, its display and radical, and how to write it in a visual way by selecting the animated stroke order option. We can also learn its ON pronunciation and its KUN pronunciation.";
fDesc[8] = "task of opening almost any program, document, folder, or web site into a two or three key-stroke effort.";
fDesc[9] = "watching animations of all and every stroke. Also, you can customize the window size, the speed of the animation, the color of the font, and so on. If you are a student learning the Chinese language, this tool is for you.";
fDesc[10] = "Simplified and Traditional Chinese versions available * Writing stroke order animation * 3000 examples * Flashcard review";
fDesc[11] = "work like to check feasibility of any Software and to check performance of that software and it is possible to forget uninstall that software/trial software due to busy schedule and obvious it is wastage of time to look and remove un necessary software daily to daily.";
fDesc[12] = "example, and the program will hide applications, open CD-ROM drive, and more.";
fDesc[13] = "characters * Both Simplified and Traditional Chinese versions available * Writing stroke order animation * 3000 examples * Flashcard review";
fDesc[14] = "help you a lot. With this software, you may learn characters like watching a movie!";
fDesc[15] = "feedback on order/placement using character recognition. Multiple choice and fill-in-the blank flashcard quiz modes. Supports KANJIDIC and EDICT file.";
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 = '...';
}
}