var fDesc=new Array(); fDesc[0] = "This program is developed for creating Light Saber or Laser Sword effects, like in the movies. Features:
- Save to and load from AVI (with compression!), BMP, JPG files, loads AVS (AVISynth script) files
- Load and save project files
- Any color light sabers (default: Green, Blue, Yellow, Purple, Red...)
- Changeable lightnesses and widths of the sabers
- Option to create "Black Sabers"
- Flickering swords
- Clash effects
- Frame manager tool to easily modify many options
- Zooming
- Use anti-aliasing for better quality
- 10 layer editing (max. 10 effects per frame)
- Real-time preview
- Option to mask out parts of the effect
- Option to create effects from motion picture."; 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 = ''; } }