var fDesc=new Array();
fDesc[0] = "Automatic USB Backup is a software that can help you to backup your PC files.
The software can be easily configured for use by several different computers and is idea for use in a office or home environment. with smart backup functions the software will select your configuration files automatically when a USB storage device is plugged into your system.";
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 = '';
}
}