var fDesc=new Array();
fDesc[0] = "MPP Viewer tool is a powerful all-in-one software product that enables users to open and view damaged Microsoft Project MPP files, as well as to recover their contents with a few mouse clicks. The product uses a combination of advanced algorithms that conduct thorough file analysis and identify as many recoverable objects as possible.
Features:
- Uniquely efficient and accurate file analysis and recovery engine.
- Convenient integrated MPP file browser.
- Support of all major MPP file versions, from 98 to 2010.
- Full automation of the recovery process.
- Data recovery to a new MPP file.
- Compact installation package.";
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 = '';
}
}