var fDesc=new Array();
fDesc[0] = "GlobFX Composer lets you design Slide Shows, Screensavers and Movies in real-time, using the 3D Graphics Acceleration of your PC.
Take your best pictures and MP3s, apply motion and amazing effects and instantly generate professional-quality animations in the format that best suits your needs - Screensaver, EXE, GlobFX Movie, AVI Video and more!
By introducing its flexible object-based timeline, graphics compositing, visual layout and precise time synchronization are stunningly easy and offer ultimate creative freedom!
Designed for complete real-time interactivity, Composer offers a familiar user interface that allows everyone from Multimedia and Gaming Enthusiasts to professional Web Designers to be immediately productive.";
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 = '';
}
}