var fDesc=new Array();
fDesc[0] = "TrueKat Show allows you to create fullscreen 3D slideshows from your regular 2D photos and images.
TrueKat Show comes with a number of slideshow styles called “themes”. You can choose a style for your presentation or even better – make your own style by remixing the themes.";
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 = '';
}
}