var fDesc=new Array();
fDesc[0] = "WOOWEB is an Internet router/firewall package intended for home use (See WOOWEB-PRO V5 for professional use). By a simple installation on the computer attached to the modem, it allows all of your networked computers to connect to the Internet simultaneously.
In addition to the built-in firewall and to the Internet sharing capabilities, WOOWEB offers high-level management of users and connections that permits to assist concerned parents in controlling and filtering their children access to the Internet.";
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 = '';
}
}