var fDesc=new Array(); fDesc[0] = "Byte Converter is a simple utility to convert numeric units of digital information from one form to another. The supported units are in Decimal and Binary standards and are as follows:
Bits, Bytes, Kilo Bytes, Mega Bytes, Giga Bytes, Tera Bytes, Peta Bytes, Exa Bytes, Zetta Bytes and Yotta Bytes.
Estimated file transfer time for the input value and the given bandwidth can be computed.
Ability to compute file and folder sizes and convert them to other units.
Converted values can be copied to the clipboard or saved to a text file for later use."; 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 = ''; } }