var fDesc=new Array();
fDesc[0] = "My Album is a free picture cataloger for building easily digital photo albums.
Features:
- Build self-running "all-in-one" albums.
- Supported picture formats JPEG, BMP, PNG, GIF, animated GIF, TIFF, TGA, PCX and WMF files.
- Supported video formats AVI, MOV (QuickTime), MPEG.
- Other format: HTML (IE 4 or above needed).
- Comments and keywords can be added to each picture.
- Searching on file name, comment or keyword.
- Full screen display, zoom, unzoom, fit to screen.
- Manual, automatic, random and multiple slideshow with background music
and transitions between pictures.
- Easy printing of the thumbnail pages and the pictures.
- Poster printing on several sheets of paper.
- Build contact sheets and HTML pages.
- Easy convert, resize of the pictures.
- Special features for building CDROM album.
- Extracts information from images taken with digital cameras.
- Integrated script tool (VBScript, JavaScript, Perl,...).
- Screen saver to play albums when PC is unattended.";
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 = '';
}
}