var fDesc=new Array();
fDesc[0] = "This lottery software is for the German lotto and Euro Millions games.
-Results are obtainable via a direct download web link updated weekly.
-Filters that allow for duplicate coverage removal and sum totals. Allowing for reduced cost entries without impact on the potential for a win.
-Program calculates/suggests lottery entries giving a better than average hit rate.
-Charts are provided showing when, how often, the frequency, and the expected drawing for each ball including how often the ball was drawn.
-Any entry can be checked against all the draws in the history file.
-Easy to use program. The program also contains an help file.
-No need to enter dates or file names for draws or files, all entries are retrieved by selection from a calendar date selection.
-Wheels for guarantees of 6, 5, 4, and 3 wins.
-Import TXT Entries
-Standing Entry facility for entries covering a number of draws.
-Unique optimized entry facility that allows the creation of the best entries based on a numbers of recent draws.
-Print entries directly onto playslips - requires configuration";
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 = '';
}
}