var fDesc=new Array();
fDesc[0] = "ReVVed is a collection of Revit extensions that have been designed with the draftsperson in mind. ReVVed turns repetitive tasks into one click commands. These commands work with architecture, structure and MEP flavors of Revit.
Commands like:
- Merge Text - merge multiple text notes into a single note.
- Change Case - changes the case of selected text notes to a user specified case. (Upper, lower, mixed)
- Web Link - opens a web browser to the URL stored in Revit components.
- Polyline - adjust the total length of end-to-end lines. (Like travel distances)
- Open Folder - opens Windows Explorer to the folder where the project file is located.
- Project Commander - store critical information about the currently open project in a handy place.";
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 = '';
}
}