var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "them, easy-to-use application Autodesk Design Review can be used as it is both money and time saver. With every Autodesk design product, this easy-to-use tool is attached, and time is also saved in the approval and mark up processes.";
fDesc[3] = "Alibre Design is made for engineers, machines designers and all those who want precision and ease in making their designs. Alibre Design enables you to create 2D drawings and then convert to 3D using simple steps.";
fDesc[4] = "to design paper craft models from 3D data. This free viewer shows you both the 3-dimensional finished model and each of the 2D parts you need to assemble the whole project. With this tool, you can print out all the necessary sheets containing all the pieces you need to build your model.";
fDesc[5] = "working with CB Model Pro is like if you would be sculpting those objects in a soft material mass. With traditional image editing programs, create those types of objects is sometimes really difficult and takes a lot of time, but with this application, create 3D stunning pictures is a piece of cake.";
fDesc[6] = "PDF document with active hyperlinks and full bookmarks. To create PDF files can be as simple as clicking a button of your mouse.";
fDesc[7] = "can be printed using only a sheet of paper. Photo IDs can be done, and there are image quality editing tools. Standard print sizes available as well. Projects can be saved on to a computer or sent by e-mail.";
fDesc[8] = "your throughout the different steps of the process. The program features a simple and straightforward user interface, specially designed for beginners.";
fDesc[9] = "(CSS) layout and formatting commands. Until recently, web designers were forced to use HTML tables as a means of controlling the position of page elements. But since the launch of IE5, Netscape 6 and later browsers, over 95% of web users can now view pages written using CSS. Unfortunately, most of the major web editing packages still incorporate CSS tools as an add-on, which causes confusion and discourages a break with the compromises of the past. Cascade DTP is different. Nearly all its functions are based entirely on the CSS layout model. The result is far cleaner code and much enhanced control over positioning and typography. This typically means pages download quicker because it is no longer necessary to convert text to images in order to give headings and logos the desired look.";
fDesc[10] = "and powerful way. Accelerates the process of PostgreSQL database creation and makes it clear.";
fDesc[11] = "of Area/Length property or coordinates for various AutoCAD entities";
fDesc[12] = "the values of Area/Length property or coordinates for various AutoCAD entities";
fDesc[13] = "extensions including context menu, property sheet, infotip, thumbnail, icon, overlay icon and drag-drop extensions as well as taskbar bands .";
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 = '...';
}
}