var fDesc=new Array();
fDesc[1] = "screen and a small window appears with the relevant text translation, information or conversion that you need without interrupting your workflow.";
fDesc[2] = "find the necessary definition using the main search or the alphabetical search. The program requires the Internet connection and also offers web search with the help of a built-in Google search. No illustrations or examples, but the ads by Google and the banners related to medicine and health.";
fDesc[3] = "sources of information, on a given word or phrase in any application on your PC just by Alt-clicking on the word. In the first instance, an information bubble opens up to display the definition of the word using Answers' selected information source.";
fDesc[4] = "here is a best quality XTerm medical dictionary. This medical dictionary not only contains detailed description of medical terms but it is also full of chemical formulas and diagrams.";
fDesc[6] = "covers most of the computer-related fields including Internet, chat, programming, networking, graphics etc.";
fDesc[8] = "generating and editing glossaries styles from .xls, .txt and .gls files. It allows the customization for xls data extraction, as the edition of the glossary style in HTML code, including icons, images and links.";
fDesc[9] = "expect in a Bible application – Bible, Commentary, and Dictionary support, Bible Search, Scripture tool tips, etc. It uses a proximity based search, rather than just a verse-based search.";
fDesc[10] = "includes downpayment savings calculator, mortgage qualifier, an amortizattion calculater, and more. Also includes forms and information for home inspection, to do lists, and a home buyer's glossary.";
fDesc[11] = "(ODF). Then, it will wrap it up into an OEBFF container (EPUB) that you can later upload to any device supporting this e-book standard. You can create your own EPUB publications from any Word, Powerpoint, or RTF file, and even add an interactive glossary to them.";
fDesc[12] = "overcome his inhibitions and lead a better quality of life. All terms have been clearly explained in simple language.";
fDesc[13] = "English case conversions, batch replace, glossary management, text file preview, sticky note, etc.";
fDesc[14] = "have been clearly explained in simple language thus making it a useful resource for novices as well as experts.";
fDesc[15] = "to the psychic and paranormal world. This glossary describes basics as well as the definitions for psychic terms.";
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 = '...';
}
}