var fDesc=new Array();
fDesc[0] = "Capture Solution XE allows you to perform professional capture screen immediately with just one click.
Main features:
- You can select entire screen or only active window or just a part of the screen.
- Capture images from anything on the screen, saving as JPG, BMP or PNG.
- Capture videos from anything on the screen, saving as AVI, WMV, MP4, WebM.
- Record audios from the audio device, saving as Wav, WMA, M4A, AAC, MP3, Ogg.
- You can apply Codec(Xvid, x264vfw, h264, DivX ...) to the video stream in real time.
- You can add your logo(watermark) to your capture.
- You can add date/time to your capture.
- You can reserve a time limit for capture.
- You can apply drawing tools in real time.
- You can capture a moving area with the mouse.
- You can pause and resume recording.
- You can add actual mouse cursor to your capture.
- You can add mouse click mark and highlight around to your capture.
- It supports zoom in/out.";
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 = '';
}
}