var fDesc=new Array();
fDesc[0] = "You have liked films? You liked the frames in film? You would like to save the separate frames? Then this program for you.
Using Frame from AVI you can:
-find and look frame
-find and look some frames
-create the Set from the selected frames
-add to Set new frames
-make effects for frames
- save the frame or all frames in any of formats:
-JPEG Bitmap (JPG)
-TIFF Bitmap (TIF)
-PaintBrush (PCX)
-Portable Network Graphics (PNG)
-Windows Bitmap (BMP)
-OS/2 Bitmap (BMP)
-CompuServe GIF Image (GIF)
-Targa Bitmap (TGA)
-Portable PixMap (PXM)
-Portable PixMap (PPM)
-Portable GreyMap (PGM)
-Portable Bitmap (PBM)
-JPEG2000 (JP2)
-JPEG2000 Code Stream (J2K)";
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 = '';
}
}