var fDesc=new Array();
fDesc[0] = "Moviestorm is opening up the world of digital animation to a broad range of people who have the need for an inexpensive, fast and simple means of making high quality animated movies.
We are offering an affordable suite of market-leading software tools that are fun and easy to use, that inspire people to do more, and that combine to form a full-featured movie-making environment.";
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 = '';
}
}