var fDesc=new Array();
fDesc[0] = "HT700E is a programming software designed for TC-700 portable radio. Ideal for high-level professionals who want powerful yet streamlined communication tools, the TC-700 series are packed with cutting-edge technology and HYT innovations. HYT's voice compander audio enhancement and a powerful 1W speaker ensure superb clear, crisp sound, even in noisy environments. Its sleek, ergonomic design makes this TC-700 series radio easy to hold and carry - and it's so lightweight you can take it virtually anywhere.";
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 = '';
}
}