var fDesc=new Array();
fDesc[0] = "The TBS Cover Editor is a tool that will help you create any virtual cover image for your product presentation.
The single-sheet concept of the TBS Cover Editor allows you editing of all box or cover sides on a single screen. The real time 3D preview immediately shows how your 3D cover output image looks like without switching between different windows or applications.";
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 = '';
}
}