var fDesc=new Array(); fDesc[0] = "Chemory is a card game for everybody interested in chemistry, both for students and professionals. The aim of the puzzle is to open and match all of the corresponding pairs of cards. There are two playing modes: matching of a structure with its name, or matching two structures (i.e. the same compound in different representations). The actual mode depends on the selected template."; 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 = ''; } }