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] = "tools and the Rhinoceros provides just the needed tools to model and document personal designs ready for rendering animation, analysis, engineering, drafting, and manufacturing or construction purposes.";
fDesc[3] = "manufacturing—purpos e-builtAutoCAD® Mechanical software is AutoCAD® for manufacturing—purpos e-built to accelerate the mechanical design process while preserving the AutoCAD user experience. With comprehensive libraries of standards-based parts and tools for automating common design tasks, it offers significant productivity gains over basic AutoCAD software and saves countless hours of design time. Features Standards-Based Drafting & Part Libraries Produce accurate designs with a comprehensive set of standards-based components. AutoCAD Mechanical supports libraries of more than 700,000 standard parts. Machinery Generators & Calculators AutoCAD Mechanical software accelerates the design process and improves accuracy with a comprehensive collection of automated machinery generators and calculators that enable users to instantly create and analyze a wide variety of common components. Data Management & Reporting...";
fDesc[4] = "Pro is designed to quickly and easily draw good-quality, straightforward designs.";
fDesc[5] = "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[6] = "operations to the user. With the help of this software, the user can easily make transition from 2D AutoCAD with import wizards, matched color and schemes, paper and model space support, XREF support, and lots more.";
fDesc[7] = "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[8] = "supports all the steps of box shot creation: from drafting and design, to 3D scene setting and image rendering.";
fDesc[9] = "The program was developed to be used by both professional and novice designers. You can use this program for mechanical design – to make drafts of different engines and mechanical parts, for architectural design – to create projects for your home, furniture.";
fDesc[10] = "used by anyone who wants an easy way to imagine, create, and publish in 3D. It is ideal for you to use as modeling editor for your home additions, gam";
fDesc[11] = "engineers. These programs can be very expensive, as well as very difficult to learn, and very difficult to use. Easy Plan Pro is very easy to use and also is very easy to design and to draw.";
fDesc[12] = "Logger on a laptop at the worksite to quickly complete necessary documentation -- usually during available drilling downtime.";
fDesc[13] = "skills, aided by the original and revolutionary Vellum Drafting Assistant and Improved Intuitive Interface. Easily create precision drawings of unlimited complexity and detail, from simple sketches to elaborate architectural or mechanical designs. Create intelligent, parametric symbols from any geometry to add to a library of thousands of architectural and mechanical CAD symbols, and preview all symbols with the new preview panel. Create multiple, associative views including auxiliary and detail views with full associative dimensioning. Graphite is the definitive productivity drafting tool.";
fDesc[14] = ", circuiting, feeder sizing, fault current calculations, voltage drop calculations, and photometrics.";
fDesc[15] = ", ductwork sizing, pressure drop calculations, and building load calculations.";
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 = '...';
}
}