var fDesc=new Array();
fDesc[0] = "Screen To Gif is a tool that allows users to record a selected area of their screen and save it as an animated GIF. Features:
- Record your screen and save directly to a gif looped animation.
- Pause and continue to record.
- Move the window around to record what you want.
- You can add Text, Subtitles and Title Frames.
- Edit the frames, add filters, revert, make yoyo style, slo-motion, add border.
- Export frames.
- Crop and Resize.";
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 = '';
}
}