var fDesc=new Array();
fDesc[0] = "Screen Recorder Genius is an easy-to-use screen recording tool. It records any screen activities and save them into standard AVI video files automatically. It can also record sound from the microphone, line-in or speakers. There are three types of region recording, it can capture defined screen region, selected window and full screen.
Main features:
- Easy to use
- Record video and audio
- Define a region or select a window to record
- Use hotkey to simplify all recording commands
- Automatically save recorded 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 = '';
}
}