var fDesc=new Array();
fDesc[1] = "Any public Webshots Community photo Webshots professional Pro Shots photos You can also easily manage and organize your photos. Plus, the included toolbar lets you upload and search for photos right from your browser.";
fDesc[2] = "in a better way. This browser gives you one click access to many search engines such as Google, Live Search, Yahoo, Digg, Ask, Magnolia, Wink, Simpy, Snap, etc. It also provides you world search on local search engines of countries";
fDesc[3] = "parse engine automatically searchs, finds, downloads and saves all user specified file types from websites.";
fDesc[4] = "from one into another. The program has the advantage of converting image files in a very short amount of time without losing any quality during the process.";
fDesc[6] = ", one-click auto enhancement that uses memory colors to analyze the photo and specifically adjust for facial tones, sky, foliage and more. The result? The best one-click solution available today. Also, our deep editing tools are designed to minimize the steps it takes to achieve great photos. We have included embedded tutorials to make it easy to learn the basics and a few tips. UpShot is the most connected software, with access to print or post your photos to Webshots, Flickr, Shutterfly, Snapfish, Wal-Mart and more.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}