var fDesc=new Array(); fDesc[0] = "OnionCat creates a transparent IP layer on top of ​Tor's hidden services. It transmits any kind of IP-based data transparently through the Tor network on a location hidden basis. You can think of it as a point-to-multipoint VPN between hidden services. Its architecture guarantees that the real IP of users cannot be revealed in any way. Tor also provides so-called Hidden Services. Those are services which are hidden within the Tor network. This means that not only the user stays anonymous but also the service (destination)."; 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 = ''; } }