var fDesc=new Array();
fDesc[0] = "A utility for backing up and synchronizing collections of files on two different computers, just like the Windows 95/98/NTBriefcase, but has the following advantages: only modified files are ported to the briefcase, the briefcase contents are compressed, the files you work on will always be on the localhard disk (and not on a floppy disk).";
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 = '';
}
}