var fDesc=new Array();
fDesc[0] = "WiNRADiO Communications manufacture radio communications equipment for a very wide range of applications. Our customers include professional communications radio users in government, industry, military, security, surveillance and spectrum monitoring organizations, as well as many radio and computer enthusiasts.
Since 1996, our award-winning receivers have been pioneering the integration of radio and computing technologies, continually enhanced by our innovative software. Our highly reliable products have been operating faultlessly in difficult conditions in some of the most hostile places of the planet.";
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 = '';
}
}