var fDesc=new Array();
fDesc[0] = "TicketDrum is a program that allows you to perform random drawings without dealing with any physical tickets or tokens. It can be used for just about any type of drawing – door prizes, raffles, even bingo!
TicketDrum comes with tools to help manage prizes, too, not just for your current drawing, but for future drawings as well. You can also generate a report as to what prizes were won and who won them. If you’re holding a live drawing before an audience, you can even display pictures of the prizes as they are being drawn for.
The “tickets” or “tokens” can be actual numbered tickets, names, e-mail addresses, or any other combination of numbers and letters, so you could hold a drawing based on ticket sales, e-mail entries, or just a contact list you already have.";
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 = '';
}
}