var fDesc=new Array();
fDesc[0] = "O&O DiskImage 15 lets you back up an entire computer or single files whenever you want – even while the computer is being used. In the event you should lose your personal data it can be quickly restored with just a few mouse clicks – even when Windows is no longer able to start. It also supports SSD drives and the latest UEFI System.
O&O DiskImage lets you carry out a system restore and to duplicate or clone an entire PC or hard drive. You can even restore this backup onto a computer whose hardware is different from the original machine, for instance, where you have changed a motherboard on the target machine or have bought a brand new PC and want to restore an old backup onto it.";
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 = '';
}
}