var fDesc=new Array();
fDesc[0] = "2N NetStar Admin Tool is a digital communication system primarily intended for medium and larger companies. It allows you to use a whole range of interfaces for voice transmission (e.g. analogue telephone line, ISDN BRI, ISDN PRI, GSM and VoIP), which are integrated into a single compact system. You will be able to choose the exact solution your company needs right now, and you can then expand it at any time in the future.";
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 = '';
}
}