var fDesc=new Array(); fDesc[0] = "The CodeCogs Excel Render toolbar allows you to create, customise and refresh your graphical equations. Although easy to use, there are several advanced features for many of the toolbar buttons:
- Display Assignment - Add or remove the name of the cell from the rendered equation
- Display Units - Add or remove units from the rendered equation
- Box Equation - Adds or removes a border from the rendered equation
- Redraw all equations - Refreshes any rendered equations that would appear differently due to any changes in the underlying formulas or values within the sheet."; 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 = ''; } }