var fDesc=new Array();
fDesc[1] = "native file support for Adobe Flash and Adobe Photoshop Album slide shows, and electronic cards, and eBooks Adobe Reader is free, works with Windows 98/Me/2000/XP/2003/Vis ta.";
fDesc[2] = "updates and thanks to it we can say it’s the next step in the Access evolution. The user’s disposal – wide library of professionally created templates of applications, makes table-, forms-, enquires- and reports- building easy.";
fDesc[3] = "of publications and marketing materials. Unlike many other Office's applications, Publisher 2007 does not have the new Ribbon fluent user interface and it still looks pretty much the same as the previous version.";
fDesc[4] = "video with in one of the following file formats: DivX, AVI, DIV, TIX, QT, MOV, MPG, MPE, and MKV (the new DivX Plus HD video).";
fDesc[5] = "in PowerPoint 97 and later versions. It supports opening password-protected presentations. You can view and print presentations, but you cannot edit them in the PowerPoint Viewer 2007.";
fDesc[6] = ", burn, convert, record and do much more with this program. Play the most popular video formats or convert audio from one format to another. Record analog audio from the computer and add sound effects, such as cross-fader, reverb, and x-bass.";
fDesc[7] = "Japanese font in to the document. It is also necessary when the author does embed the font, but the reader of the document wishes to interact in some way with its content – e.g. collaborating, commenting or filling out forms.";
fDesc[8] = "civilization, or as the imperialistic British. Players also have the opportunity to try out the new random map Honshu, and the King of the Hill game type.";
fDesc[9] = "It is utilizing a database of a whopping 400,000 words and phrases. Means it contains all generally used words. And lots of features Like multi-language support for user interface, English words pronunciation, speech filter, bidirectional etc. and lots more.";
fDesc[10] = "Simplified Chinese, Traditional Chinese, Japanese, and Korean (CJK) languages, in our English (or other languages) applications, without the need of installing extensions for the above-mentioned languages.";
fDesc[11] = "English-Japanese dictionary, and a pop up dictionary. People wanting to learn/teach the Japanese language, and those who need a word processor that supports Japanese and English characters can take full advantage of this program.";
fDesc[12] = "100,000 words. When searching for a word, we can enter a Kangi or its Romaji (Roman character) pronunciation. We can click the Kangi to view its ON pronunciation and its KUN pronunciation, plus its meaning, number of strokes, radical number, radical, and radical name/meaning.";
fDesc[13] = "to use and enables you to you to learn Japanese at your computer while doing other work. It provides you with a Reader Angel, a Dictionary, a vocabulary learning tool and a conversations tool.";
fDesc[14] = "Kana). It is possible to learn a Japanese word (Kanji), number, or phrase, view its Kana pronunciation, listen to its audio pronunciation (by a native speaker), and its meaning (in English).";
fDesc[15] = "Japanese audio word files, which can be imported to another Japanese learning program called Japanese FlashCards. If we are interested in learning words related to a given topic such as business, travel, music, etc., we can create very easily our own word files.";
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 = '...';
}
}