var fDesc=new Array();
fDesc[0] = "The Blaser Emergency Alert Messaging System is the premiere alert system for Windows computers in a network environment. BEAMS is a complete client-server system; the client runs as a system service on your workstations and when an alert message is sent, all computers instantly display the full-screen alert message – regardless to what the user is doing. The only requirement is that the computer is powered-on (and connected to the network). The alert system displays the full-screen alert message in all of the following cases:
- If a user is logged-on
- If the screen-saver is running
- If no one is logged-on (The Ctrl Alt Del message is present)";
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 = '';
}
}