var fDesc=new Array(); fDesc[0] = "SDRuno is a Software Defined Radio which can be used with the Radio Spectrum Processor hardware from SDRplay. SDRuno has a customizable interface that adapts itself according to the SDRplay hardware that you have. SDRuno can create and run multiple VRX inside the same application instance. A VRX is a receiver implemented in software. Each VRX takes the signal from the defined sample rate processes it and will output the demodulated signal to an output device available of your choice."; 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 = ''; } }