var fDesc=new Array();
fDesc[1] = "advantages of the new enhanced user interface. In addition, virtually anyone, anywhere can intervene in the review process with Autodesk Design Review, the free integrated solution available to consult, write and revise designs electronically.";
fDesc[2] = "and sharing through the Internet, open format. Similar to PDF files, this smaller file contains scale and design information ready to be managed by designers and experts. The name of DWF Viewer has been changed to Autodesk® Design Review.";
fDesc[3] = "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[4] = ", complete and expandable. The concept behind the interface and work methods in Maya are extremely smart, and the program offers extreme control over every aspect of your work. The learning curve is steep though, so you will need to invest time in order to master this 3d beast.";
fDesc[5] = "drawings and three-dimensional designs, for example, architectural drawings, electrical schematics, and mechanical drawings. It's a great alternative of AutoCAD.";
fDesc[6] = ", that are the standard formats for Autodesk programs, as well as DXF, also an standard format for the drawings generated by Autodesk applications for interchanging data.";
fDesc[7] = "necessary tools and library to architects, designers, builders to design, document and construct their modeling projects. It features bi-directional association, material takeoff, parametric components, design options and visualization, etc.";
fDesc[8] = "(generated by Autodesk programs), as well as DXF (also generated by Autodesk applications for interchanging design drawings). The publishers offer total compatibility to the current AutoCAD version in the market.";
fDesc[9] = "drawings such as DWG, that are the standard formats for Autodesk programs, as well as DXF, also an standard format for the drawings generated by Autodesk applications for interchanging data.";
fDesc[10] = "developer’s website. This software provides a comprehensive tool box set for creating animated 3D models. Now we can design four legged characters, render complex scenes with multiple objects, shades and movements, map difficult geometry like a rollercoaster, etc.";
fDesc[11] = "USA or Canada. It has been developed by combining AutoCAD and architecture features to provide architects with the necessary library and tools for drafting, designing, drawing, creating, rendering, sharing, scheduling, dimensioning, drawing compare, etc.";
fDesc[13] = "are using Autodesk Revit, AutoCAD or Autodesk Inventor applications of Autodesk Design, then from the Publish command that is attached, DWF files can be directly created.";
fDesc[14] = "environment you already know. Purpose-built architectural design and drafting tools make for efficient, intuitive creation of construction documents. AutoCAD® Architecture software provides AutoCAD-based design and documentation productivity specifically for architects. You now have more tools to automate drafting tasks and create your architectural documentation faster. Designed specifically for architects—Work in the familiar AutoCAD environment, using tools that are purpose-built for architectural design and drafting. Get immediate productivity—Begin using AutoCAD Architecture software with minimal training, creating documentation, drawings, and schedules faster, with fewer errors, and in a software environment you already know. Make a smooth transition to more advanced features at your own pace. Collaborate smoothly—Exchange information easily using the industry-leading...";
fDesc[15] = "bit different to other artistic programs but it is really simple and easy to use. Although it includes basic artistic options (like pens, pencils, pens, markers, brushes, smear tools and erasers), it doesn't include filters or effects.";
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 = '...';
}
}