var fDesc=new Array(); fDesc[0] = "BitrateCalc.exe determines the constant bitrate for encoding movies. Just enter the media type, the duration of the movie, and the audio bitrate. The program will then calculate the constant bitrate needed to fit the movie to the available disk space. Multiple audio tracks and multiple disks may also be entered into the calculation. The determined bitrate is given in kilobits and bits."; 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 = ''; } }