var fDesc=new Array(); fDesc[0] = "Flwrap allows you to transmit a text message, image, or binary file to either single or multiple stations and allow each receiving station to verify that the transmission was received without error.
The program encapsulates a text file, an image file, or a binary file within a set of identifier blocks.
These blocks include a 16 bit checksum that is used to test the encapsulated file for integrity. Flwrap is designed to be used to best advantage with fldigi but can be used with any digital modem program."; 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 = ''; } }