var fDesc=new Array();
fDesc[1] = "videos. AviSynth works as a frameserver, providing instant editing without the need for temporary files.AviSynth itself does not provide a graphical user interface (GUI), but instead relies on a script system that allows advanced non-linear editing.";
fDesc[2] = "play MPEG-4 movie files or network distributed streams.Real-time decoding up to 720x576 (coding speeds for Pentium/Athlon above 1 GHz).Plays MP4 files and streamed MPEG-4 video (ISMA compliant)Full MPEG-4 conformity (ISO/IEC 14496) for Simple and Advanced Simple ProfileHighly sophisticated post-processing improves picture quality.";
fDesc[3] = "and AVC (H.264) formats, but supporting numerous other video and audio formats as well.";
fDesc[4] = "sizes. The 3ivx decoder plays back most MPEG-4 variants (including DivX 3,4 and 5, Apple MPEG-4, Philips MPEG-4 and XviD). The 3ivx decoder produces noticeably higher quality video than other decoders due to its high quality post-processing filters, and because of its core design and optimization maintains a record-breaking decode speed. The windows version of the decoder includes an AAC audio decoder for Windows Media Player as well as a Media Splitter (to play back .avi, .mov and .mp4 files inside Windows Media Player). The 3ivx encoder produces industry-leading compact high quality MPEG-4 video and is distributed as a plug-in for QuickTime as well as a plug-in for Video for Windows. This allows you to encode MPEG-4 video in .avi, .mov or .mp4 files (with AAC audio) with the encoding application of your choice.";
fDesc[5] = "way. The application includes interesting and unique features including voice comments, sensor dust filter, haze compensation, spectral sensitivity controls, chromatic aberration filter, vignetting and barrel corrections, among others.";
fDesc[6] = "mobile devices to snap pictures of any text and then convert those pictures into a text file. The program even has a text-to-speech engine, for you to save the regignized text to WAV or MP3 formats.";
fDesc[7] = "and QuickTime VR objects, to shoot film’s episodes and animation. This application can be used by architects, designers and 3D CAD users.";
fDesc[8] = "PhotoTune 2.2 incorporates ColorTune technology with its patented color correction process and SkinTune technology, developed after more than two years of in-depth skin color research.";
fDesc[9] = "applications produced by Armenian Dictionary Software Inc., the extreme simplicity. You will find everything you need to convert your videos in formats such as AVI (DivX, XviD), MPEG1, MPEG2, VCD, SVCD, WMV, and ASF to animated GIF and SWF flash files.";
fDesc[10] = "number of bitmaps. Alpha masks, 3D effects, pre- and post-processing filters and user-made masks are key for creative photo mosaics.";
fDesc[11] = "merging different documents together, composing page outlines, re-arranging pages etc. Not only does this application provide a reliable alternative, but also displays an overview page without requiring any additional software, allowing the user to get a better know-how of the on-going task.";
fDesc[12] = "frequently. But more often than not, doing it the usual way via the Windows control may get tedious, so ScreenShot Wizard is a handy utility-ware, which basically helps the user in capturing images and comes with advanced post processing options.";
fDesc[13] = "faster. It is actually a one-click tool, because all you need to do is just load a picture and click on the “enhance picture” button.";
fDesc[14] = "It features a Full GUI (Graphical User Interface) for pre-processing or post-processing and uses the Finite Element Method (FEM) for plane trusses for its analysis purposes.";
fDesc[15] = "screen, window(s), screen region(s). Add custom cursor, shadows, borders and other effects.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}