var fDesc=new Array();
fDesc[0] = "EASIS Drive Cloning helps you clone or copy hard drives, partitions or other storage devices bit-wise. Often you need to copy bytes from one hard drive to a second for upgrade your computer or laptop. Sometimes you need to copy the the bytes from the hard drive for data recovery reasons.
Byte-wise copies have the advantage that all original information (hidden or not hidden) are copied to a second hard drive or drive image. Although hidden license information can be copied if you make byte-wise copy of you hard drive or partition. To make consistent copies you need to stop working on the source drive because EASIS Drive Cloning will copy the bytes accessing sectors.";
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 = '';
}
}