var fDesc=new Array();
fDesc[0] = "With this application, you can view your pictures in a very beautiful way. If you think of a slide-show, you might think of simple 2D and maybe some fade effects between two pictures. But this is boring if you know Sysygy Image Viewer.
This program generates a virtual 3D museum with your pictures on the wall. You can walk freely through the gallery and look at your pictures. This is a complete different dimension of a slide show. While visiting the gallery, you can listen to your favorite music, too. You just have to create a your own playlist, which is very easy.";
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 = '';
}
}