var fDesc=new Array(); fDesc[0] = "The LAN Chat Server is a program that functions as the server side of the chat software for the local area network.

The server side of the program allows all the clients of the software to connect with one to each other. In order to operate this program correctly, you will need the client side of this program (different distribution).

With this program you can set the chat text, such as bold text, underline text, clear text and more... At the right side of the program you can see the list of the connected users.

This software is a freeware program. Enter your nick name, After the connection has established from the clients side, you can chat with the users that appears on he right side of the screen."; 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 = ''; } }