var fDesc=new Array();
fDesc[0] = "Bring your ideas to life.
-Creates standalone games, applications, presentations, screen savers from SWF and subsidiary files (XML, FLV, MP3, JPG, etc.).
-Turns SWF projects into try-before-you-buy commercial products.
- Protects your files so that no one can steal them.
- Enables you to create really transparent applications.
- Adds new features to your SWF files.
- And much-much more...";
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 = '';
}
}