var fDesc=new Array(); fDesc[0] = "This is a very simple program that let you select photos in the Windows Shell and upload to SmugMug.

Main Features:

- People tagging: Photo Gallery automatically finds the people in your photos so you can add a name to the face. Then later, all you need to do is type in someone’s name to see all the photos of that person.
- Photos from friends: See new photos from the people you know as soon as they post them online. Their new shots come to you automatically in Photo Gallery.
- Photo editing: Adjust exposure, color, or detail by hand, or use auto adjust—either way, your photos look great. You can even create amazing panoramas—Photo Gallery automatically stitches them together for you."; 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 = ''; } }