var fDesc=new Array();
fDesc[0] = "CADprofi - the best solution for everybody:
- professional software for many branches
- user interface in 22 languages
- many thousands satisfied customers
- large network of local reseller
Main features:
-Standardized parts: bolts, screws, washers, nuts, joints, rivets, studs, openings, rebates, wedges, pivots, pins, bearings, grease nipples, and many more.
-Many local and international standards.
-Steel profiles: L-bars, tapered-channel bars, flat bars, box sections, rods, pipes, and more.
-Casings and end caps, pipes, U-bends, tees, reducers, etc.
-Composite walls, the ability to specify any wall construction.
-Parametric woodwork (doors and windows). Plan, cross-section, and elevation views.
-A library of furniture, sanitary ware, etc.
-Architectural symbols: plan description, spot heights, opening and wall penetration symbols, woodwork symbols, etc.
-Architectural dimensioning at any numeric accuracy.
-Drawing and editing emergency escape routes and plans.
-Library of workplace health and safety and fire-safety symbols.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}