var fDesc=new Array(); fDesc[0] = "Microphone Pass-through Emulator is designed for the newer sound cards that the direct playback from microphone to speaker is disabled, such as Realtek HD sound cards. This means you cannot hear what you speak to your MIC from your speaker. This playback feature is a very important or must-have for some applications like Karaoke software or sound mixing programs. Without this feature, you have to spend a lot of money and time to setup a big system with an extra mixer. This program pass the input from microphone through your speakers directly in background to emulate playback features."; 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 = ''; } }