var fDesc=new Array();
fDesc[0] = "ScreenVirtuoso records desktop activity as AVI video file. Can optionally record sound and synchronize it with video. Allows you to convert AVI files to MPEG-1/2/4,VCD/SVCD/DVD,FLV/SWF,WMV video formats (PRO).
Features:
- Screen Area Selection: you can easily select any rectangular screen area, window or full desktop.
- Video Setup: output file name, video compressor, frame rate value, overlays disabling, and more.
- Multiple Video Codecs: supports popular video compressors such as XviD, DivX, and more.
- Audio Setup: audio quality, volume, audio device/input, compressor and more.
- Multiple Audio Codecs: supports popular audio compressors such as MP3, Windows Media Audio, and more.";
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 = '';
}
}