var fDesc=new Array();
fDesc[0] = "Papyrus can safely maintain thousands of pages in a single document, correctly handle as many footnotes as necessary on any page, as well as pictures, tables, etc.
Main features:
- Papyrus OFFICE offers integrated word-processing (Papyrus WORD) with a powerful database (Papyrus BASE). Database forms and generated reports are Papyrus WORD documents, and can be re-formatted with ease.
- Similarly, form letters can be generated by combining a Papyrus WORD document with a Papyrus BASE database. This technique also permits automated literature indices for bibliographies.
- Concise and efficient coding leaves Papyrus plenty of resources to manage huge documents (with thousands of pages!) and equally large numbers of embedded graphics, without requiring an over-dimensioned system.";
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 = '';
}
}