var fDesc=new Array();
fDesc[0] = "SL4 is a multi-award winning open source 6/49 Lotto database application that is based on the South-African National Lottery which started on Saturday 11 March 2000. Your chances of winning a 6/49 Lottery Jackpot is about 13 983 816 to 1. But using SL4 might just increase your chances of winning.
SL4 features include:
- Winning Lotto Numbers Database.
- Full SL4 Database Access.
- Time-Line Graph of Lotto Numbers.
- Drag and Drop Functionality.";
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 = '';
}
}