var fDesc=new Array();
fDesc[0] = "Atrise ToRTF is a file format batch converter based on Microsoft Office 2003 libraries. It can convert office documents to a portable RTF format:
- *.docm, *.docx - Microsoft Word 2007 (additional download is required)
- *.doc - Microsoft Word 6,95,97-2003 (additional download is required)
- *.wps - Microsoft Works 9/8/7/6/5(2000)/4.x (additional download is required)
- *.doc, *wpd - WordPerfect 6.x/5.x (additional download is required)
- *.mcw,*.xls,*.pwi,*.wk*,etc - different documents supported by Microsoft Office 2003 (Microsoft Office 2003 installed is required)
- *.wri - Windows Write (on 2000/XP/x64)
- *.htm, *.html, *.htx, *.otm - HTML (on 2000/XP/x64).
Main features:
- Native convert libraries from Microsoft
- Drag and drop support, file selection, folder selection
- Can convert multiple files or folders
- Microsoft Office is not required for most file formats
- Command line support
- Fast multithreading convertion, optimized for dual-core CPUs.";
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 = '';
}
}