var fDesc=new Array(); fDesc[0] = "This project's aim is to help who needs to open up a big file and have to browse on it mostly on windows or of course you may use it under Linux.

Implemented Tasks: open very big files, mouse wheel and go down in the file, ctrl+L and go to the line, catch page up page down or arrow keys for reading a file line by line or page size, go to the end of the file, change file and save it, search in the file."; 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 = ''; } }