var fDesc=new Array();
fDesc[1] = "take charge of your code. Fully extensible, with a powerful scripting language to meet the needs of the serious user.";
fDesc[2] = "appointments and dance and strip for you whenever you want them to. The desktop version is free and unlimited.";
fDesc[3] = "and turnaround times by eliminating the need for manual stripping. These imposed signatures can be output on your digital press, imagesetter, platesetter, on-demand or laser printer. No matter how complex the job, Preps creates accurate impositions every time. Preps is designed to fit into the traditional prepress and printing workflow, so you dont need to change the way you work. Preps is a powerful and easy to use imposition solution for service bureaus and printers of any size. Preps is available in three versions, Pro, Plus and XL. All versions are provided on CD-ROM in English, German, French and Spanish for Macintosh. For Windows 95 and Windows NT operating system Preps is available in English, German and French.";
fDesc[4] = "be hosted as a plug-in with VST and RTAS applications. The program allows users engaged in computer based audio recordings an automatic method of pitch correction.";
fDesc[5] = "interpretative and/or ideological biases. As most of the BibleMax modules, this one interacts fully with the commentaries and references installed in your core program.";
fDesc[6] = "and dance and strip for you whenever you want them to. The desktop version is free and unlimited.";
fDesc[7] = "supports 53 languages/scripts all told. Includes handy features for HTML/web document editing. Word-wrap, bookmarks, auto-completion/-corre ction...";
fDesc[9] = "from messages. Remove duplicates. Tidy up Contacts. Monitor your web-sites. Delete spam. Open multiple web sites.";
fDesc[10] = "columns, character set conversion, case converting, removing excess white space, removing blank lines, preparing regex expressions....";
fDesc[11] = "Presence. Comes with Anti-Spam, Anti-Virus & SSL/TLS/S/MIME Encryption. Allows Digital Certificate creation.";
fDesc[12] = "tags, date taken, rating, 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 = '...';
}
}