var fDesc=new Array();
fDesc[0] = "Z-Anaglyph will generate a red-blue composite images for 3D viewing (anaglyphs) from two separate images (left and right). Z-Anaglyph can generate grey level and color anaglyphs.
The anaglyphs can be viewed on a computer screen, saved to the disk in the Jpeg or Tiff format, or printed on a color Printer. Anaglyphs are viewed through 3D red-blue glasses to bring out the 3D effect.
On installation, Z-Anaglyph will default to French menus. However it is possible to set Z-Anaglyph with English menus using the Preferences screen.
At present, the user's manual is only available in French. However Z-Anaglyph is very easy to use and Hints are available at every command.";
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 = '';
}
}