var fDesc=new Array(); fDesc[0] = "Lyquidity.FindCombinations is an add-in that uses Visual Studio Tools for Office (VSTO) and Window Presentation Foundation (WPF).
Find Combinations is an Excel 2007 add-in which allows a user to find the combination of values in a specified cell range that total to a given value. The add-in is presented as custom task pane so it is always displayed while you need it and can be hidden at other times."; 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 = ''; } }