var fDesc=new Array();
fDesc[0] = "GTeam is a new way for architecture, engineering and construction teams to collaborate and share 3D and project information. You can save time, reduce change orders, and reach consensus faster.
Main features:
- Project Collaboration;
Simplify exchange of files and project information. Combine file management and viewing, messaging and activities in one simple to use tool.
- Powerful BIM, 3D & 2D;
Collaborate with anyone by combining 2D and 3D models right on the web including Digital Project, Revit, AutoCAD, Rhino, SketchUp and more.
Eliminate tedious file conversions and expensive proprietary software.
- File Sharing & History .
Upload and share 3D and 2D documentation with the entire team including PDF, Word, Excel, pictures, and videos. Put the project’s entire social and transactional history at your fingertips.";
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 = '';
}
}