var fDesc=new Array(); fDesc[0] = "WiFi Mesh Simulator Pro allows to simulate traffic and routing building between moving in 2D space stations. Each station has the following properties:

- Initial location
- Data traffic schedule
- Velocity vector

During simulation, each station faces with constantly changing network topology, updating dynamic routing tables automatically, finding a route to destination.

Simulator allows to analyze:

- Total traffic ratio
- Effective traffic ratio
- Collisions ratio
- Maximum/Minimum/Average throughput"; 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 = ''; } }