var fDesc=new Array();
fDesc[0] = "A Smaller Note 99 sends yellow stickers via the network from one PC to another and displays them on the desktop. A smart way to inform and to be informed.
A Smaller Note allows you to send short messages via the network. It includes the following features:
- Extremely simple, intuitive to use
- Recipients receive the note immediately without having to do anything like checking a mailbox
- Notes are received even if the PC is turned off
- Extremely easy to install and administrate
- No intranet necessary, therefore ideal even for small businesses";
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 = '';
}
}