var fDesc=new Array();
fDesc[0] = "Alligator Flas DEsigner is an easy to use flash design software.
Features:
-Build Flash websites, banners, presentations, and slide shows
-Import photos, screenshots, clipart and video files
-Add shapes, lines, curves, text, 3d effects, and gradients
-Insert links, create buttons and clickable hotspots
-Play background music, voice-overs, and click sounds
-Apply animation effects like zoom in/out, flips and rotation
-Export SWF files and add them to your website
-Customize your Flash project with the ActionScript language";
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 = '';
}
}