var fDesc=new Array();
fDesc[1] = ", create 2D presentations with LayOut, and more. It's easier to learn than other 3D modeling programs, which is why so many people are already using it.";
fDesc[2] = "application is to combine the spontaneity of sketching by the hand with the power of digital tools, and achieve it with awesome and powerful tools and an intelligent guided process that makes everything really easy.";
fDesc[3] = "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[4] = "applications alike. The tool is full of features which help to take it to the ranking software in this industry. The main feature is the Core Architecture.";
fDesc[5] = "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[6] = "Sketchup. With this component you access to multiple 3D models of architectural accessories to design your house of office. Just to name some, you’ll find sofas, windows and doors, laptops, illumination accessories and many more.";
fDesc[7] = "Sketchup, and is intended to use in combination with the Architectural Library. With this component you access to multiple 3D models of landscape architectural accessories to design outdoors spaces.";
fDesc[8] = "access to multiple 2D and 3D models of people in different situations to animate your sketches and models. The People library, like the others libraries available, are free downloadable from the Sketchup’s web site.";
fDesc[9] = "Sketchup. With this component you access to multiple 3D models of construction accessories to design your house, office or any other building.";
fDesc[10] = "component you access to various – but not that many - 3D models of transportation units like ambulances, motorcycles, helicopters among others, to design and create a certain atmosphere for outdoors spaces.";
fDesc[11] = "this component you access to various 3D models of accessories to create a filming atmosphere in you sketches. Included with this library you will find models of the typical chair of directors, microphone stands, triangular jibs, trailer power generators among others.";
fDesc[12] = "program offering them a quick one-click render for model adjustments and for online productions. All the features available in the full product are available in this free edition of IDX Renditioner Express Free 1.0 except that this program renders image sizes at a maximum of 600 x 480 pixels.";
fDesc[13] = "Choose from an array of cameras, lights, dollies, cranes, grips, characters and more. Use the enhanced Camera feature to quickly and easily plan shots, calculate camera angles, and obtain a 3D visual of the scene before filming.";
fDesc[14] = "converting SketchUp files. If these documents are in 3D PDF files, then they can easily be sent to clients or others in an email or published and posted on a website.";
fDesc[15] = "tool is to make possible to create sketches on a digital platform with the distinctive style of a sketch drawn by hand. Available for Windows and Mac users";
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 = '...';
}
}