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] = "PDF format to as the standard for giving downloadable information pages or printable forms. This software helps you do all the operations on a PDF file, like inseting password, converting images to text, compressing and reducing file sizes, etc.";
fDesc[4] = "installed in our computer or Pocket PC. Students, for example, can save their AutoCAD projects done at the university or college and view them at home in their PC later, without AutoCAD or Internet connection. We can edit, measure, calibrate, zoom, view layers, block attributes.";
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] = "eDrawings Viewer software you can view, print, and review all types of eDrawings files, native AutoCAD® files and SolidWorks® parts, assemblies, and drawings. With eDrawings Publisher software you can also publish and email eDrawings files from several CAD platforms.";
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] = "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[10] = "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[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[12] = "and publishing of the required files becomes a lot more accurate and a lot easier. It is also based on the former program DWG TrueConvert and has embodied the full suite of functions that can also be found in it.";
fDesc[13] = "included amost all the features requitred for a CAD program. One advantage is that it is really more user friendly and easy to study compared to AutoCAD. The interface is quite neat.";
fDesc[14] = "independent of any CAD software. You can view, zoom and edit any AutoCad file. Search tool enables the user to search for a text or description in the DWG file in seconds. You can use the replace tool to replace text with another without looking for it in the DWG file.";
fDesc[15] = "AutoCAD to be installed in the same computer. The application allows the user to create a single PDF document for each DWG or DXF file, or just one PDF document including several DWG and DXF files converted to PDF standards.";
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 = '...';
}
}