var fDesc=new Array();
fDesc[0] = "For all the users struggling with cutting and splitting their favorite videos, and wasting lot of precious time, the Free Video Cut and Split tool offers a way of cutting the selected part of the desired video and saving it as a separate file.
The application is capable of handling all common video formats right from AVI, WMV, ASF down to the usual MPEG video format and also comes with additional features like zooming. It also displays audio and video information about the concerned clip, and the user can save movie frames as bitmap files. The user cannot only split the video clip or the movie at any position, but even save a frame from it in form of an image as well.
The program has a simple intuitive user interface featuring a couple of sliders, which are useful for selecting the start and the end of the portion to be clipped off. It also features a multi-linguistic user interface to facilitate the users to use a different language for assistance apart from the regular English dialects, making life easy for the users of non-English speaking countries. Furthermore, the user can save the output video clip as AVI, MPEG or WMV format with the help of custom codec configuration as well.";
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 = '';
}
}