var fDesc=new Array();
fDesc[1] = "It features slideshows, templates with three-dimensional effects, high transparency and even Vista-looks, along with useful tools for a highly sophisticated website design and management.";
fDesc[2] = "albums based on the popular Adobe Flash technology. Within the program you will have more than 38 eye-catching templates to choose, and you will be able to apply many visual effects to your albums with ease.";
fDesc[4] = "RSS, Atom, and RDF formats are supported).";
fDesc[6] = "is based on easy-to-use professionally designed templates which are easily filled with text, images, links etc";
fDesc[9] = "A development environment that allows creation of dynamic websites in PHP5 with a MySQL/PostgreSQL/SQLit e database backend. Supports search engine friendly URLs. PHP code is autoloaded so there is no need to use include() or require().";
fDesc[10] = "No knowledge of HTML or CSS is required.";
fDesc[11] = "output size, advanced options and you're ready to go. Au2Thumbs PRO suports 27 different image formats and allows you to preview what you...";
fDesc[13] = "thumbnail output size and click! Nothing could be easier! Support for MANY different image formats to convert and create perfect thumbnails. Whats nice about this program is that it allows you to see BEFOREHAND what your thumbnails will look like before creating them! Top quality thumbnails at lightning speed. A MUST for any image collector or website creator.";
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 = '...';
}
}