var fDesc=new Array();
fDesc[0] = "RTG WIN is application software for the IT6000, IT8000 and IT9000 Weighing Terminal is developed on a PC using the RTG WIN programming environment. This consists of editor, program generator, compiler and test tools.
RTG WIN enables the programmer to develop secure and user-friendly application programs within a surprisingly short period of time.";
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 = '';
}
}