var fDesc=new Array();
fDesc[1] = ", 2003, 2002, or 2000. You may copy text or graphic into another program, but you will only be able to open the document for editing if you have Microsoft Word installed.";
fDesc[2] = "with different types of text formats. Apart from being easy to use and intuitive, it supports a wide variety of popular file extensions.";
fDesc[3] = "text editors etc and works faster than server side checking. Moreover it provides useful spelling suggestions allowing you to add and remove personal word.";
fDesc[4] = "images together with different layouts, templates, photo frames, mask effects, cliparts and word arts. Created collages can be saved, printed, sent via E-mail or saved as wallpapers.";
fDesc[5] = "print wonderful business cards of multiple sizes. It includes many high-quality business card templates and logos, as well as great design tools and background images to help you design your own cards in a snap.";
fDesc[6] = "LMS systems. This courseware and application framework conforms to standards of the AICC and ADL SCORM. You can import content from MS-PowerPoint and integrate it with other multimedia content";
fDesc[7] = "Notepad and WordPad to make a great word processor. The main idea behind Jarte is usability. So, the developers created an application that is both light-weight and powerful.";
fDesc[8] = "all the text that you copy from that moment. At any time, you can paste the last clip loaded on the clipboard by simply hitting Ctrl + V, but Clipdiary allows you to browse through everything you have copied, and paste any item anywhere.";
fDesc[9] = "that lets you listen to documents, e-mails or web pages instead of reading on screen.";
fDesc[10] = "You can learn how to work with Angel Writer in five minutes since it is very similar to Microsoft Word.";
fDesc[11] = "presentation formats, preserving the original documents format (images, backgrounds, colors, etc.). The output result file is a document generated in another format that is very representative of the original file.";
fDesc[12] = "pictures, rich text, and URLs. This allows you to paste the items saved into any application. The program works in two modes: History mode has a limit of 200 saved items by category, when the 201th item is stored, the oldest item will be removed. Boilerplate mode is a permanent storage area.";
fDesc[13] = "be heard rather than read. With the help of this tool, you can make your text read aloud in British English and American English with both male and female voices.";
fDesc[14] = "Format and Plain Text Format. It has a basic spell checker and thesaurus but to work you have to add a dictionary manually. Files can be saved in Win Word 6.0, RTF (Rich Text Format), txt document, and MS-DOS text format.";
fDesc[15] = ", Unicode, plug-ins, regular-expression search, find or replace in files, syntax highlighting, powerful tab feature, and more. Designed for Windows XP.";
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 = '...';
}
}