var fDesc=new Array();
fDesc[1] = "with the ease and flexibility of a word processor.";
fDesc[2] = "Windows applications and web pages. It includes advanced text search capabilities and a 'favorites' tab to save the more often searched topics, themes and/or terms. The application itself includes an image editor to help user on including the help file to the developed and compiled program.";
fDesc[3] = "of some words. The two modes of the program – the teaching words mode and the spelling mode – allow children to see images depicting words, to listen to pronunciation and to learn spelling, so both audio and visual perception is engaged simultaneously.";
fDesc[5] = "working with HTML, JavaScript, CSS, etc.A built-in browser, FTP client and a number of wizards provide flexible tag and style insertion.";
fDesc[6] = "conversion, joining, splitting and burning. Each program will have its own limitations till registered (number of files, length, number of DVDs you can burn). This limitations will be removed after registration.";
fDesc[7] = "Files, Microsoft Word Documents and Adobe Acrobat Document.";
fDesc[8] = ", including optional, customizable syntax coloring. It also includes a complete GUI Builder and many other coding tools.";
fDesc[9] = "with the help of your computer. It works under Microsoft Windows\"95, \"98, Windows NT, Windows ME, Windows 2000 and Windows XP operating systems family and supports FBUS cable or Infrared connection. This program is freeware.";
fDesc[10] = "pages, images and help project files. Includes help editor. HTML Help, web-based help and documentation in Word.";
fDesc[11] = ", HTML Help, and Web Help files from the same source. Download your free trial copy now!";
fDesc[13] = "such as HTML pages, images and help project files. Includes help editor. HTML Help, web-based help and documentation in Word.";
fDesc[15] = "and Visual Basic, MSDN-like, documentation. Support smart \"See Also\" link generation, language filtering, pop-up windows, color templates etc.";
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 = '...';
}
}