var fDesc=new Array(); fDesc[0] = "With this smart little utility you can view the binary contents of any file.
- Drag & drop any file into the window and immediately view its contents
- Show the contents in hexadecimal or decimal notation
- Choose how many bytes per line will be shown
- Each line contains a file position pointer, binary data and the ASCII (readable) representation of the binary data. It helps to quickly find positions or structures in the file.
You can use BinView to analyse unknown file formats, like database structures, application data files, executables, etcetera."; 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 = ''; } }