var fDesc=new Array();
fDesc[0] = "Z-VSScopy enables Z-DBackup and Z-DATdump to back up open and locked files.
With Z-VSScopy, you can back up all files, even those to which Windows or a running application currently have exclusive access. This is possible by using Microsoft VSS technology (Volume Shadow Copy) which was integrated in Z-VSScopy and taylored to the needs of a computer user. The software uses means that Windows offers to create complete and consistent backups.";
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 = '';
}
}