var fDesc=new Array();
fDesc[0] = "CZ Word to PDF is a batch PDF converter that can convert word doc/docx, html, rtf, text to Postscript Files (PDF, PS, EPS, PXL etc) and Picture/Image Files (PNG, JPEG, TIFF, PNM, BMP etc). It doesn't require Adobe Acrobat to be installed.
Source file formats include many office file formats, for example Word 2007/2010 Documents (*.docx), Word 97/2000 Documents (*.doc), Web Pages (*.htm,*.html), Web Archives (*.mth,*.mthml), Rich Text Format (*.rtf), Text File (*.txt), Lotus 1-2-3 (*.wk1;*.wk3;*.wk4), Windows Write (*.wri), Word 2.x 4.x 5.x 6.0/95 for Windows & Macintosh (*.doc), WordPerfect 5.x 6.x (*.wpd,*.doc), Works 4.x 2000 (*.wps,*.wpt) etc";
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 = '';
}
}