var fDesc=new Array(); fDesc[0] = "HTML and especially PHP documents may be saved in either Unicode of ASCII. Sometimes, ASCII is preferred. This program converts the special characters that ASCII cannot save between Unicode and HTML Numeric Character Reference format.

How it works: when converting from ASCII to Unicode, the program replaces all numeric character references over 255 to unicode. When converting Unicode to ASCII, the program replaces all unicode characters past code point 255 to HTML numeric character references of the form: &#123; where 123 is the code point of the number."; 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 = ''; } }