var fDesc=new Array();
fDesc[0] = "Area61 VideoBrowser is a multimedia player that plays back MPEG/AVI/WMV/RM files in
normal/fast/slow/frame-by-frame/repeat-loop/special effects playing modes. You can
also get shapshot images of any size from a movie file. Every frame of the selected
portion of the movie file can be converted to JPG/PNG/BMP images. SHIFT with mouse
dragging allows you to crop snapshot images.
On the thumbnail view, you can browser an outline of the movie by browsing a number
of thumbnails taken from the movie file, and start playing the movie by clicking one.
Furthermore, the software allows you to seek a movie file by specifying timecode, and
see datecodes (recording date and time) extracted from DV-captured AVI files.
The software also supports audio files and image files.";
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 = '';
}
}