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] = "audio and video. You may capture your video footage directly, using a web-cam attached to your computer. You may then edit the audio and video tracks of this media file, separately and independently of each other.";
fDesc[3] = "VirtualDub is a video capture/processing utility for 32-bit Windows platforms (95/98/ME/NT4/2000/XP) , licensed under the GNU General Public License (GPL). It lacks the editing power of a general-purpose editor such as Adobe Premiere, but is streamlined for fast linear operations over video. It has batch-processing capabilities for processing large numbers of files and can be extended with third-party video filters. VirtualDub is mainly geared toward processing AVI files, although it can read (not write) MPEG-1 and also handle sets of BMP images.";
fDesc[4] = "seconds. The program includes three capture modes: a window or menu, a free region or a fixed sized region. In the latter you can select the exact width and height of the region.";
fDesc[5] = "in a linear way (cutting and pasting fragments freely and works both as standalone application and as plug-in for the most common video edition software, such as Sony Vegas, Pure Motion EditStudio and Adobe Premiere.";
fDesc[6] = "command line tools are available for editing these files. Movica is a GUI for both these tools";
fDesc[7] = "Assistant Director Wizard who will help learners to create slide show very easily, effectively and in a professional manner. Importing of video clips or photo is just a click away and user can select more than one at a time which is the unique feature in its category.";
fDesc[8] = "creative and brand-new functions similar to Adobe PhotoShop. IconCool supports fifty image filters including blurring, sharpening, embossing, as well as fifteen image effects, including Linear Gradient, Wave, 3D shadow, 3D button, text gradient effects and more.";
fDesc[9] = "features give full command over editing and mixing videos, photos and sounds altogether. It supports all common video formats like AVI, WMA, WAV, 3GP and supports all common photo formats like BMP, GIF, and JPEG.";
fDesc[10] = "The software includes an integrated Step Sequencer view which is very advanced. It also has smart MIDI tools where a single tool can be used for multiple editing tasks. The Real-time Drag-Quantize helps in aligning various notes and events with the snap settings.";
fDesc[11] = "files, and export icons in a custom size and color depth.";
fDesc[12] = "analysis. Provides extensible set of editing and calculation features and includes ActiveX-compatible scripting environment.";
fDesc[13] = "You need a Scanner with dia module, a Personal computer with a large disk, and 8mm2avi does the rest.";
fDesc[14] = "effects, Import icons from images and files, and export icons in a custom size and color depth.";
fDesc[15] = "movies, music video productions, video yearbooks and corporate presentations.";
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 = '...';
}
}