var fDesc=new Array();
fDesc[0] = "The optional Acronis True Image Home 2011 Plus Pack integrates seamlessly within the Acronis True Image Home 2011 standard version*, and leverages its intuitive graphical interface.
Main Features:
- Restore to Dissimilar Hardware Restore a computer to dissimilar hardware regardless of make, model, or installed components, or to a virtual machine.
- Dynamic Disk Support Back up and restore dynamic volumes easily, taking advantage of dynamic disk capabilities including multi-partition and fault tolerant volumes as well as partition size adjustment.
- Microsoft® Windows Preinstallation Environment (WinPE) Support Speed up your recovery process with easy and quick integration of the latest Microsoft drivers, customized scripts, applications and plug-ins to your rescue or boot media.";
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 = '';
}
}