var fDesc=new Array();
fDesc[0] = "The Basic Web Server is a software that allows you to turn your PC into a basic internet web hosting server, fast, free and easy!
With this program you can create new connection, set the server to start and stop, get the number of the connections, save results, get the local IP, get the local PC name, set the front page that will displayed to the surfers and more..
This program is free. Open the program. Set the html tags of the web server, Click on Start. From now user can access to your web server.
You can get your local IP under tools->local ip. You can get your PC name under tools->pc name. You can save the html tags as html file under file->save. You can view the html tags results under view-view as web page.";
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 = '';
}
}