var fDesc=new Array(); fDesc[0] = "If your codebase is not organized, you are incurring the unnecessary cost and frustrating those involved in the development process. Improve the organization of your software architecture.

Interactively organize the classes into a hierarchical, compositional model, use existing structures such as packages, Maven projects, Assemblies, etc. Use Structure101’s suggestions to construct a composition based on class cohesion. Use over-complexity measures to guide remodeling."; 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 = ''; } }