var fDesc=new Array();
fDesc[0] = "Have you ever dreamed of having your pictures exhibited on the walls of a stylish art gallery? If so, you have an amazing opportunity to see your favorite photos in an exciting environment of 3D virtual galleries.
Photo! 3D Screensaver offers a wide choice of fabulous 3D galleries - from a contemporary showroom or an exhibition hall to a medieval castle, gothic cathedral or even a chinese garden. We did our best to make the design and architecture of each gallery tasteful and pleasing, to create a realistic, relaxing atmosphere.";
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 = '';
}
}