var fDesc=new Array(); fDesc[0] = "It’s a random number generator that can pick the numbers for your raffle. It’s specifically designed for raffles that use cloakroom style tickets. These are supplied in books of various colours with numbers ranging from 1 to 1000.

Main features:
- It can be used to pick the numbers for up to 500 prizes.
- Each prize can have a description attached which is displayed along with the number.
- Prize lists can be saved and edited at a later date - ideal if you need to add more prizes as they become available.
- It picks random numbers from within a range that you define. The range can be from 1 to 1000 and anywhere in between.
- It can handle spoiled or unsold tickets - these can be individually removed before the draw starts.
- It can pick from 5 different colours. Pink, blue, white, green and yellow are all catered for. Mix the colours if you wish.
- It can handle re-drawing of individual numbers - useful if the winner declines the prize.
- It will display the drawn number in large characters on the screen or using a 3 reel slot machine type display.
- It can display the security number on your tickets.
- It will keep an accurate record of all the draws made.
- You can add you own title or logo.
- You can customise the background graphic.
- You can edit the text that is displayed before the draw starts.
- The software can make use of a second display device if you have one. This could be a TV, second monitor or projector."; 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 = ''; } }