var fDesc=new Array(); fDesc[0] = "With this simple application you can encode or decode from/to base64 encoding selected files on your disk or network. Simple file open, convert, file save dialogs. Steps of use are: After app start, select input and output files for conversion, then click "Do it", application will inform you of success or failure.
This tool is useful for software developers and it has little use in data protection."; 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 = ''; } }