var fDesc=new Array();
fDesc[0] = "If you have a camera or a webcam, you really do sometimes record video with their help.
Typically, mobile devices record video in one of standard formats: mp4, mpeg4, avi, etc. Such files are easy to watch them on a PC or convert them to any other convenient format.
However, some devices record video with a special format Motion JPEG, which can not be played on PC and home hardware player.
Many devices generate MJPEG files when capturing video. Motion JPEG (MJPEG) require a lot of space. MJPEG Processor is a tool that converts mjpeg-files to MPEG-4 (DivX compatible).
If recorded video looks like a set of files with obscure names like *.mjpeg, – MJPEG Processor is just for you!";
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 = '';
}
}