var fDesc=new Array();
fDesc[0] = "This application converts MS Office documents (Word, PowerPoint, or Excel) into multiple target formats: PPT (Microsoft PowerPoint), PDF, PNG, BMP, TIF, JPEG, PS, and EPS. NEW feature: Conversion from MS Word to MS PowerPoint!
You do NOT need additional commercial software. You just need:
GhostScript (free downloadable) and Adobe Universal PostScript 1.0.6 (free downloadable).
The test version is free of charge, converts the first 3 pages only and expires after 10 conversions.";
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 = '';
}
}