var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to play a riddle solving game. The application has an extensive database of riddles and has an option to keep track of the user's correct answers. The user can guess the answer to each riddle and there is a button to show the correct answer when required. There is an option to display the entire database of riddles if required. This is a fun and mind improving diversion from work."; 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 = ''; } }