var fDesc=new Array();
fDesc[0] = "Route Sentry is specially designed for South Africans who want to make use of 2 ADSL accounts on the same PC at the same time, with the one account being used for local access only and the other for international.
It will monitor your 2 connections and automatically route South African traffic through the “local” account while directing all other traffic through the “international” account.";
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 = '';
}
}