var fDesc=new Array(); fDesc[0] = "Gorgeous Karnaugh allows you to minimize logical functions using K-maps. This can be useful for engineering students, teachers, or professionals who are specializing in digital circuits. For programmers, this application can also be helpful in refactoring the existing source code and minimizing logical conditions in loop and conditional expressions.

Professional version can help you design highly optimized digital circuits, create circuit layouts, and generate VHDL, Verilog, or Structured Text code for use in your digital device projects."; 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 = ''; } }