var fDesc=new Array();
fDesc[1] = "unique set of features including many visual options, smart behaviors, easy-to-control Glass with on-screen HUD.";
fDesc[2] = "The dictionary contains over 250,000 words, including historical figures, slang and jargon. The program suits perfectly for visually impaired or blind computer users.";
fDesc[3] = "clearly than ever. Using ZoomText 9.1 xFont you see a clear and high quality text that the user can easily recognize. Neo Speech is an additional feature that reads the cursor in all the documents and application on the screen.";
fDesc[4] = "your progress by taking Comprehension Tests (for grades 1-12+). Read efficiently online with the Online Reader.";
fDesc[5] = "Documents on paper are scanned and converted into text with its highly accurate OCR capabilities, while electronic files are opened and transformed into readable text on the fly. Once converted, OpenBook’s high-quality synthetic speech will read it aloud for you.";
fDesc[6] = "whole process is automatic, relying on the silences and long pauses that we find in spoken recordings. The process involves no re-encoding, thus preserving the original quality. This application has been designed to be accessible for blind and visually impaired users.";
fDesc[7] = "supports the three main types of DTBs available – text only, audio only with NCC, and synchronized text and audio. Though fully compatible with your favorite screen reader, its built-in TTS capabilities allow you to use it independently.";
fDesc[8] = "impaired users, you can also get a list from of latest radio stations on the internet and save your favourite stations.";
fDesc[9] = "progress by taking Comprehension Tests (for grades 1-12+). Read efficiently online with the Online Reader.";
fDesc[10] = "the 2.0 and 2.02 DAISY specifications. It supports three main types of DAISY books – text-only, audio-only, and full-text with full-audio. Its simple display will allow you to browse through the NCC of the book or to follow the text while listening to the audio recording.";
fDesc[11] = "will allow you to make the most of this new standard of digital talking book. Its self-voiced interface will help you navigate through the structured audio, text (when available), and Braille, of both DAISY 2.02 books and OPF package files containing a DAISY/NISO Z39.86-2002 file set.";
fDesc[12] = "the game is able to create and environment only with the sound engine. It allows players to guide themselves only by sound. This game is a great achievement and shows what software for the visually impaired can do.";
fDesc[13] = "blind. This software has a magnifier and is a screen reader with Braille support. It is also perfect for individual users that experience deteriorating eye stray during a working day or even for school or work, to provide solutions for visually impaired groups.";
fDesc[14] = "screen area. A must have tool for visual impaired users or anybody hunting lost pixels, needing a fast screencapture or to measure distances.";
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 = '...';
}
}