var fDesc=new Array();
fDesc[0] = "Panoptica is a new kind of video processing software for your desktop or laptop computer.
Main Features:
- Banner videos for web sites
- Panoramic videos
- 360° scenes
- Professional camera moves from amateur source material
- High quality panoramic stills
- Create inspirational, unusual video content for your web sites
- Make artistic improvements in video composition and camera motion
- Construct novel views of video scenery
- Make new movie clips from old";
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 = '';
}
}