var fDesc=new Array();
fDesc[0] = "TeamViewer can make use of DynGate (Firewall Router). Together with DynGate
TeamViewer can communicate across firefall barriers and proxys without any need for special firewall configurations. DynGate works with static and dynamic IP-Adresses. DynGate integrates so smart in TeamViewer that you'll forget they are two
products. While TeamViewer is a free solution, DynGate is a commercial product.";
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 = '';
}
}