var fDesc=new Array();
fDesc[0] = "S.O.S Backup Free creates backups on CD-R/RW, DVD-R/RW, FTP, USB drives, hard disk, and other Windows-recognized media.
Now home users have access to the same backup technology as used by companies – and free of charge. Virtos created S.O.S Backup Free because it considers the data of domestic users to be just as important and worthy of protection as that of a company.";
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 = '';
}
}