var fDesc=new Array();
fDesc[0] = "The Active Bulletin Custom Screen Saver is an Internet-based screen saver that is ideal for providing promotional and advertizing information to your target market - in real-time!
Control the images your customers see. Update your images and text message at any time
- remotely - via the Internet. Add hot-links directly to your website, so your customers can stay in touch with you.
Customizable with your images, logos, captions, weblinks.
Communicate your corporate vision in a novel way. Showcase your products.
Advertise your services. Create a promotional item. Create a motivational tool for employees or business partners. Encourage repeat visits to your website.";
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 = '';
}
}