var fDesc=new Array();
fDesc[0] = "Demo Builder allows you to create eye-catching and professional interactive presentations that do not require any programming skills. It uses a very simple interface which takes mere minutes to get used to. It gives you everything you need to capture the activities in running applications and comes with a wide range of tools to edit the recorded material. Add a voice-over narration track or background music, visual effects, annotations, comments and other elements that add to the effectiveness of your presentation.
New in version 11:
Add animated characters to your movie and edit them with a full range of amazing actions and realistic movements. From walking, talking, greeting and explanations to intricate eye and head movement; with these options you'll be creating professional demos in no time !";
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 = '';
}
}