var fDesc=new Array();
fDesc[0] = "A plug-in for use with Adobe Acrobat.
Using the simple BookMarker desktop publishing tool's dialog box, create multi-level bookmarks to any depth easily and quickly.
Using the TextSelect tool from Acrobat's toolbar, highlight a sample of text whose attributes are used to define a particular bookmark level; for example, a heading or sub-heading.
Other bookmarking tools limit your ability to create as many levels as you wish; BookMarker has no such limitations.
With BookMarker, create as many levels as needed.";
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 = '';
}
}