var fDesc=new Array();
fDesc[0] = "Run your programmable BetaBrite LED display with our intuitive messaging programs, each created especially for the Classic and Prism models by Adaptive.
Create, view and manage your messages from the convenience of your PC. And downloading to your LED sign is fast and easy!
The software comes complete to connect to your digital sign.
Features:
- Intuitive installation wizard
- WYSIWYG interface simulates messages onscreen on your PC
- Allows you to create, edit, view and store several messages
- Multiple font and character color choices
- Transition effects include scrolling, flashing, drop-ins, and more.
- Works with full-color Prism model and 8-color Classic model";
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 = '';
}
}