var fDesc=new Array();
fDesc[0] = "1Click Backup is a powerful backup software utility. While developing this application, our primary focus was not on developing just another backup utility. Rather, we enriched our application with features that promote user-interactivity and make it user friendly. 1Click Backup provides you with many such features you always strive for in a backup utility.";
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 = '';
}
}