var fDesc=new Array(); fDesc[0] = "You may find that you have quite a body of Win16 and/or DOS code that you have ported to use Win32. However you may be compiling this code as MBCS so that you do not need to convert all the text strings to the unicode syntax, which uses _TEXT() and _T() macros. This program will perform this conversion for you, prompting you for each conversion."; 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 = ''; } }