var fDesc=new Array(); fDesc[0] = "This application can help the user to create and print a selected part of a Flood Insurance Rate Map (FIRM). These mini-FIRMs, called FIRMettes, can either be printed or saved in a Portable Document Format (PDF) file and are considered equivalent representations of the original FIRM panel from which they are made as long as the panel number, north arrow, and scale bar are included."; 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 = ''; } }