var fDesc=new Array(); fDesc[0] = "Calico is a tool for performing COCOMO calibrations. You can use it to calibrate traditional COCOMO models, as well as COCOMO II models.
Based on data describing some of your completed projects, Calico will calculate the optimum estimating equations for your environment.
Calico also lets you modify any of the 4,000 numbers that define a COCOMO model you can add Cost Drivers, edit the Effort Multipliers, change the equations, change the effort distributions, etc."; 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 = ''; } }