var fDesc=new Array(); fDesc[0] = "Eliminate many problems with non-English letters with this little tool.

This program fills [FontSubstitutes] section of WIN.INI so that your desired code page (e.g. 204 for Cyrillic letters) is default for every installed True Type font. If you don't know the "code page" for your language - look in [FontSubstitutes] section of WIN.INI and find something like this:
Arial,0=Arial,NNN
-where NNN is your codepage number. In fact the program tries to find the line itself and prompts you to change it if you wish.

The FixFonts program prompts you for the code page NNN and after you press "OK" all the lines will look like:
Arial,0=Arial,NNN

Names of all True Type fonts are retrieved from Registry. All old lines in [FontSubstitutes] other then "FontName,0=..." remain unchanged."; 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 = ''; } }