var fDesc=new Array(); fDesc[0] = "The Main Page displays the character currently in Learning List - the subset of the total 1000 characters that are current being learned. The Learning List Status windows displays the Learning List statistics including the number of character successfully learned. By clicking on an individual character in the Learning List a summary of its meaning and pronunciations is displayed in the Selected Word Details window. See the "Character Summary" screenshot to the right."; 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 = ''; } }