var fDesc=new Array(); fDesc[0] = "This is the basic principle behind stereoscopic 3D images: The are two pictures. One is meant to be seen by the left eye. The other is meant to be seen by the right eye. In other words, each 3D image consists of 2 separate pictures, a left-eye picture and a right-eye picture.

In Images 3D this is a very important fact. In order to produce your own 3D images, you need to take two pictures - one for each eye.

Stereoscopic 3D is not the same as conventional 3D. Conventional 3D is the kind referred to when talking about 3D rendering, 3D accelerators and so on. Conventional 3D means the ability to rotate an object in space and view it from all angles. The viewing, however, is still two-dimensional only."; 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 = ''; } }