var fDesc=new Array();
fDesc[0] = "IncrediMail Collection Manager is a small utility that gives you the means to change the collection name of IncrediMail's letters, ecards, sounds and animations.
It gives you a preview of the selected letter, ecard or animation and lets you play the sound file to make sure you know which file you have selected.
Simply enter a new name in the New Collection field or New Title field and with a single mouse click the file will be converted and reinstalled in IncrediMail.";
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 = '';
}
}