var fDesc=new Array();
fDesc[0] = "The product is oriented to enterprises who needs a permanent and private connection with local and foreign employees and customers, throw chat channels that gives them privacy, agility and organization between the different areas of the enterprise.
Features:
- Easy and fast change of active channel (ie. from customers to employees channel, etc).
- Handling of FTP accounts to simulate safe virtual folders to share files with other users.
- Integrated Internet browser.
- Easy e-mail delivery.
- Delivery and direct reception of files.
- Large texts delivery to users with just a click.
- Web pages delivery to users.
- Possibility to deliver acoustic calls to other users to get their attention.
- Possibility to open multiple chat windows separate with each user.
- Easy administration and change of active server.
- Simultaneous use in local (LAN) and Internet networks.
- User state selection like: “active”, “not available”, “be right back” and automatic response.
- Access to weather maps.
- Language selection English or Spanish.
- Floating notification of "new user on-line".
- When a new message arrives, the program will bring-up automatically.
- Possibility of minimizing the program in a simple icon located in the Window's clock zone (TrayIcon).
- Little shape, without interfering your work with other programs.
- Compliant with Windows XP visual styles.";
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 = '';
}
}