var fDesc=new Array();
fDesc[1] = "Vista. With this program you will be able to change the boring and plain Windows default cursors and create a more appealing and funny desktop";
fDesc[2] = "deliver superior quality on the Web. With this program you can Reduce complexity and ease data integration by using powerful design tools and task panes to quickly incorporate XML data.";
fDesc[3] = "such as clear org charts, complete maps, spectacular flowcharts, time lines and much more in just minutes in a very easy way. No experience is needed.";
fDesc[4] = "animated 3D text and graphics, such as logos, titles, headings and buttons. When you run the program for the first time, you`re offered to watch a Demo Movie that explains how the program works. You can always watch that movie in http://site.xara.com/p roducts/xara3d/demomov ies.asp.";
fDesc[5] = "Start with one of build-in logo template or create your custom logos from scratch. http://www.aaa-logo.co m/";
fDesc[6] = "variety of different tasks. So JavaScript FH plus can also be thought of as an ultimate source for Java Scripts. The program contains 170 finished Java Scripts, with every java effects you can think of.";
fDesc[7] = "you make up stunning websites for your business, home or school in just few minutes. It´s not necessary to have any complicated HTML or other programming.";
fDesc[8] = "buttons. Free download at: http://www.crystalbutt on.com 1000+ button templates included!";
fDesc[9] = "(DWF) files to AutoCAD DWG and DXF.";
fDesc[10] = "your desktop. It can monitor 20 different pages on 20 different sites all live. Download is a free trial";
fDesc[12] = "Web sites. It provides an easy and pleasant development process, which saves time and increases your help-writing efficiency.";
fDesc[14] = "unlimited freedom to manage page content and appearance. You do not need to know how to program or write HTML code.";
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 = '...';
}
}