var fDesc=new Array();
fDesc[0] = "Accurate and easy to use MS Word documents conversion to html with no MS Office installed. Two simple step to convert - select document and choose the name of the html document. Major features:
- MS Word 97/2000/XP/2003 documents supported;
- fully supported both full and fast-saved documents;
- character and paragraph formatting supported;
- full support of bullets and numbered lists;
- full support of tables including cell merging, cell shading;
- full support of both footnotes and endnotes;
- full support of fields;
- special characters interpretation handling;
- multilanguage documents supported;
- summary information available;
Output is a plain html, no styles (at least now), smallest possible size of resulting html document, low memory and space requirements, highest possible accuracy concerning tables, bullets and numbering, footnotes and endnotes.";
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 = '';
}
}