var fDesc=new Array(); fDesc[0] = "Arabic Text Reverser is a small application enable inputting Arabic texts into the applications that do not support Arabic including Adobe After Effects, Sony Vegas Movie Studio, 3DS Max and AutoCAD. When working with Arabic texts in applications like Adobe After Effects, Arabic letters don't appear in the correct order and forms, the problem can be solved by simply reversing the letters order and choosing the appropriate form for each letters as Arabic letters have up to 4 forms. This program is treating Arabic letters as if they are English letters. That is, the letters are separated and are displayed from left to 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 = ''; } }