var fDesc=new Array();
fDesc[0] = "Lazesoft Windows Recovery Unlimited Edition allows you to fix boot problems and rescue your important data when Windows cannot boot normally.
Main features:
- Recover Windows from critical system errors when BSODv happens or it displayed a black screen.
- Recover MBR even if when a boot virus has corrupted the MBR.
- One-click repair Windows system partition boot sector.";
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 = '';
}
}