var fDesc=new Array();
fDesc[0] = "Turn a folder of images into a cool web gallery in a few seconds. A web gallery is a site of web pages to navigate and view your images. Smooth Gallery Builder is different because:
1. It doesn't have tons of settings which trade pain with pain.
2. It generates chic gallery pages instead of formalistic ones.
3. It allows you to design your own templates with your familiar visual tools.
4. It doesn't require you to setup a project so as to gather and sort out you images in the application before you build a gallery.";
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 = '';
}
}