var fDesc=new Array();
fDesc[0] = "777 Record and Cut is an all in one webcam recording and editing tool.
"777 Record and Cut" is a thoroughly user-friendly software for video production on the home PC.
The strength of this tool is that it focuses only on one specific problem: Webcam shots and editing. The recordings can be directly used in video portals.
Create videos with your webcam and edit them - all in one.
As in video editing programs, shorten and cut so that the original video and audio tracks reach the desired result.";
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 = '';
}
}