var fDesc=new Array(); fDesc[0] = "Surface Style Toggle is a free app for Civil 3D 2013 that functions as a surface style component toggle. The program allows for quickly toggling surface plan/model view display components by selecting the surface display component via the command line. Running the command brings up command line prompt for items to toggle plan components on and off."; 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 = ''; } }