var fDesc=new Array(); fDesc[0] = "Acarda VoxConverter can play, record, and convert WAV and VOX files. WAV files can be in the format of 8 Bit or 16 Bit, Frequency of 8000 Hz, 11025 Hz, 22050 Hz, or 44100 Hz, Mono or Stereo. Vox files can be in the format of PCM 8 Bit or ADPCM 4 Bit, with Frequency of 8000 Hz or 6000 Hz."; 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 = ''; } }