var fDesc=new Array();
fDesc[1] = "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[2] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[3] = "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[4] = "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[5] = "player, using video files or an already authored DVD, saved on your PC. Video DVD maker will allow you to import video from video files in different formats, including AVI, DIVX, XVID, MP4, MPG, WMV and ASF.";
fDesc[6] = "applications and other customized software. It software is based on the Lua scripting engine which is common in all of the Indigo Rose tools. The output so obtained from the software is comparable to the output created by C++ and Java.";
fDesc[7] = "startup, true flexibility and powerful features allow you to create and edit JavaScript.";
fDesc[8] = "if you are not a user, in a little time you’ll be a viewer of a Sketchup created model. In that case you will be needing the Google Sketchup Viewer, available for free download from the Sketchup web site.";
fDesc[9] = "menu bar, one toolbar, two windows and in the foot of the program we can see an advanced box, a filter strenghtt and two buttons more.";
fDesc[10] = "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[11] = "approach and component framework for PHP. The proven and familiar RAD approach means you are quickly up to speed and productive. The powerful PHP editor, debugger, and profiler increase coding speed and efficiency.";
fDesc[12] = "powerful drag-and-drop website creation tool that includes everything you need in one package.";
fDesc[13] = "more. We can handle any kind of flash contents and we can create 3D buttons, 3D slideshows, button bars, news readers, Multilevel Menus and more. With the help of this program we can also create flash navigations, flash intros, 3Dflash, flash slideshows, flash banners and HTML websites.";
fDesc[14] = "or Pitfall, etc. It is not a professional game creator or multimedia tool. It is a small application. Anyone can create a small game easily. But there are a lot of settings you need to set, when creating a game. Each character or object in the game can be customized in a lot of ways.";
fDesc[15] = "few that breaks the trend. InsightPoint is a tool for creating vector graphics and images entirely free complex that combines to perfection all the qualities to be treated as a powerful competitor to existing publishers of scalable vector graphics (SVG).";
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 = '...';
}
}