var fDesc=new Array();
fDesc[0] = "Flash Optimizer is the most powerful SWF compressor available today. It is possible to reduce SWF files size by up to 60-70% without quality loss thanks to amazing algorithms of vectors, shapes, morphing, Z-buffer, fonts and other revolutionary optimizations.
Main Features:
- Revolutionary compression methods that allow to optimize SWF files to save up to 70% of their original size
- Vectors & curves optimization
- ZLib compression (can be applied and removed)
- Shapes optimization
- Morphing optimization
- Fonts optimization
- Zero-objects optimization
- Sounds compression
- Embedded video compression
- Intuitive Flash movies manipulation
- Easy preview and interactive comparison of the original and compressed movies
- Simple and Advanced optimization settings - customize every compression option
- Customizable optimization settings presets (compatible with Mac version of Flash Optimizer)
- Batch compression mode
- Command-line interface (available in Business and Company licenses)
- Detailed logging of every event that takes place during compression";
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 = '';
}
}