var fDesc=new Array();
fDesc[0] = "Free Video Flip and Rotate. Rotate video or flip video with one mouse click.
Very fast and easy. 7 available options:
- rotate video 90° CCW;
- rotate video 180°;
- rotate video 90° CW;
- flip video vertically;
- flip video horizontally;
- flip video vertically and rotate 90° CCW;
- flip video vertically and rotate 90° CW.";
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 = '';
}
}