var fDesc=new Array();
fDesc[1] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[2] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[3] = "any significant changes, except, perhaps, a couple of bug fixes from the previous entry in the franchise and some improvements in the voice calling system.";
fDesc[4] = "Yahoo or Google. But finding the image you have in mind is not always possible. Now Ginipic can help you out in this common task; this simple yet powerful application is able to search images on many popular websites and show you hundreds of results.";
fDesc[5] = "catalogue your images collections. Unlike other similar software tools, the information is embedded into the image, not into an external database. You can create your list of most-used keywords, and assign them to hot keys, to help you reuse them with just a single key stroke.";
fDesc[6] = "pictures and videos so that you can browse through them and watch/see them in 3D. There is a list of supported sites that you can use with Cooliris, so don't get your hopes up.";
fDesc[7] = "weather, news, Ebay auctions, TV listings, shopping, exchange rates, entertainment events, and much more.";
fDesc[8] = "any kind from the web, displaying them in an instant preview. ImageGrabDummy! contains advanced filters to block out advertisements.";
fDesc[9] = "in increased browsing speed. SpyDeny feature monitors your PC against incoming spyware.";
fDesc[10] = "generation, table of contents, index and search, images with hotspots and export to Word. The wizard lets you set many options for page layout and application specific information. Results can also be exported as Word document (technical or user documentation) or to your website. Names used in HTML pages can be either captions or objectnames (depending if you want to make user or technical documentation in Word). Included help editor feels as if you were directly editing the help file. Includes state of the art help editing environment.";
fDesc[11] = ", and can also grab images from the gallery of Yahoo,Google and AllTheWeb.";
fDesc[12] = "pages, images and help project files. Includes help editor. HTML Help, web-based help and documentation in Word.";
fDesc[13] = "digital photos. You will be able to burn these albums to a CD or DVD, in order to share your memories with friends and family. Or you can upload them to the Internet, making it much easier to share them.";
fDesc[14] = "PDA/smartphone, place text or logo, gather EXIF-collected photo statistics, search images and more...";
fDesc[15] = "such as HTML pages, images and help project files. Includes help editor. HTML Help, web-based help and documentation in Word.";
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 = '...';
}
}