var fDesc=new Array();
fDesc[0] = "PLEXTALK Recording Software Pro (PRS Pro) is a DAISY2.02 (*) production tool, which can import DAISY2.0 content for editing or upgrading.
Main features:
- It enables a blind or partially sighted person to create a DAISY audio book independently.
- All menus and navigation are fully accessible from the keyboard.
- Built-in voice guidance and display options allow you to customize the software for your particular needs.
- Recordings can be edited easily using word processing style commands.
- Use of MP3 encoding gives up to 90 hours of audio recording on a single CD.
- Built-in CD writing facilities - you don't need separate software for this purpose.
- Capable of creating multiple book CDs.
- Import and edit existing DAISY books or combine several books into one.
- Text import feature to allow rapid conversion of text to an audio format using synthesized speech.
- Table of Contents (ToC) import feature to speed up the production process.
- Audio conversion facility to change the audio format of your projects.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}