var fDesc=new Array(); fDesc[0] = "The working principle is very easy. It imitates a job with cards. At the beginning, the card from the right side is shown to you. There is its content in the upper left field of the operating panel. Further, you try to remember what is written on the reverse side of the card. Regardless of your result, you turn over the card – and push the button Answer. In the left lower field of the operating panel the content of the card reverse side is appeared, and at the same time the examples and explanations are emerged into the right field. You compare this information with that you manage to remember. If your answer coincides with the card content, push the button Correct, if not, Incorrect. The system processes your answer and suggests you the next card. Then the procedure is repeating."; 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 = ''; } }