var fDesc=new Array();
fDesc[0] = "Available both for the Mac and PC, the Uploader lets you add a bunch of photos by simply dragging and dropping your photos into a window like the one above.
In Windows, an ‘Upload to ZoomIn’ option also gets added to the Auto Play menu and you will see it when you insert a memory card from your camera or a CD containing photos into your computer.
The Uploader has many features designed to make getting photos into your albums at ZoomIn a breeze. You can also work completely offline until you are ready to transfer the photos. It supports organizing photos into different albums within the same batch, adding photo tags, place tags and setting privacy options.";
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 = '';
}
}