var fDesc=new Array(); fDesc[0] = "The primary functions of the program are to record all of the checkins for a particular net and then to work as many contacts that you have not worked before. When a station checkins you enter the callsign, the state they are located in and if they are portable or mobile. After entering this information the program visually tells you that either you have worked this station in this combination or not work the station. If the station is green then you have not worked it. It is this basic function that is the foundation of the program. Many, many additional features are included that will help you with the contact."; 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 = ''; } }