var fDesc=new Array();
fDesc[0] = "eDocManager creates always a preloader to every published SWF. It shows user a downloading progress of opening publication.
Publisher can publish more than one SWF files from InDesign and gather them to one user interface. In that case end-users will see a dropdown menu. They can jump to any published document by choosing it from that menu. Users can also jump from document´s last page to next document´s first page by simply clicking Next Page button.
Publisher can create an interactive table of contents by creating bookmarks in InDesign and using eDocCreator script for SWF creation.";
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 = '';
}
}