var fDesc=new Array();
fDesc[0] = "3DMediaViewer LE is free 3D photo viewer software that allows you to view 3D pictures on any PC. It can be used to view 3D images in either MPO (Multi-Picture Object) or JPS (JPEG Stereo) format, and it supports three display modes.
When you run 3DMediaViewer for the first time, it starts a 14-day trial of the full version of the program. This includes all the features of the LE version, and also allows the following:
- adjusting the depth of 3D images
- zooming in and out during viewing";
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 = '';
}
}