var fDesc=new Array(); fDesc[0] = "Decision Oven is a simple program for common people to make decisions. You can use it to support everyday personal or business decisions such as "which car should I buy", "what's the best computer for me", "where should we go for a vacation", and "where to go for a dinner". It lets you divide the problem into small and easily manageable chunks and use mathematical calculations to make complex decisions."; 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 = ''; } }