var fDesc=new Array();
fDesc[0] = "It is an application designed to upgrade your MS Office Suite documents.
Main features:
- Upgrade Multiple Documents from Older to Newer MS Office Version
- Keep Meta Data Intact along with Last Modified Date, Author Names etc.
- MS Office 2007 and Above Version Should Be Installed on Machine
- Batch Upgrade Office Files DOC / PPT / XLS to DOCx / PPTx / XLSx File format
- Two Document Export Modes: Single Export Mode and Bulk Export Mode
- Export Options: Default, Delete Source File(s), Add Suffix to Source File(s)";
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 = '';
}
}