var fDesc=new Array(); fDesc[0] = "File View is a must-have utility for all Windows power users, programmers and most casual users. It lets you browse file contents as text, either ASCII (as in listings or .INI files), hexadecimal dump for binary files or raw text with no respect for line ends and other control characters to easily identify printable data in binary files. Many aspects of formatting and display are configurable to suit any needs.

Among other features are: View and print files as text, hexadecimal dump or raw stream of bytes. Display ANSI (Windows), ASCII (DOS, Unix) or EBCDIC (IBM mainframe) character sets, etc."; 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 = ''; } }