var fDesc=new Array(); fDesc[0] = "Karnaugh Map Minimizer is free (GPL) software for minimizing boolean functions using the graphic method of Karnaugh maps. I made it primarily for educational purposes so double check the output if you intend to use it for any "real" work. I hope it helps you with whatever you are doing.

This program sports some of the most amazing features in Karnaugh map minimizing sofware known to modern man, like solving up to 8 variable maps, solution highlighting, input form a truth table or directly on the map, displaying cell adresses and if you download today, you can have it for free, to use and share with your loved ones. If you're still not convinced click on the image on the right to see a screenshot of the program in all it's glory!"; 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 = ''; } }