var fDesc=new Array(); fDesc[0] = "SolverStudio is an Excel add-in that allows you to build and solve optimization and simulation models using tools such as PuLP, AMPL, GMPL, GAMS, Gurobi, and SimPy. You can create and edit your model without leaving Excel and to save your model inside your workbook. You can also easily link data on your spreadsheet to variables of the model. SolverStudio manages the exchange of data between the spreadsheet and the model, ensuring your answer appears back on the spreadsheet."; 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 = ''; } }