var fDesc=new Array();
fDesc[0] = "Bimoid messenger is the simple and lite client program for sending instant messages between users through Bimoid server. Using Bimoid messenger, you can connect to any Bimoid server installed on your local or any other network, if you have appropriate access and server address.
Basic features of the messenger:
- English and russian languages interface support
- Server side contact list with groups hierarchy support
- Several view modes of contacts
- Several compact modes of contact list window
- Tabbed messaging
- Instant messaging with delivery reporting support
- Only unicode messages supported
- Internal support of transparent messages encryption
- Internal spelling check support
- Direct and proxied file transfer support
- Interface supports system themes and skins
- Pop-up notifications and messages support
- Animated smiles support
- Status-pictures support
- Editing and setting user avatars
- Users directory search by account name, e-mail and other criteria
- User friendly and lite program interface";
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 = '';
}
}