var fDesc=new Array();
fDesc[0] = "Galaria is a simple to use web image gallery creator. It has a very simple, straight forward user interface, making it one of the easiest to use web gallery generators available. The generated html pages contain a main page with thumbnail images, and indexed pages with full sized images and navigation links. Galaria's key features include:
- 3 step process makes creation a breeze
- works with .bmp, .jpg, and .gif images
- creates simple html pages which can be further edited by users
- preview samples and add captions to every image
- save gallery configuration to add more images later
- customize image sizes, borders, colors, layout and more";
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 = '';
}
}