var fDesc=new Array();
fDesc[0] = "Lotto Wizard uses advanced statistical analysis to select the most popular winning patterns consisted of active, average and passive numbers.
Its build-in Suggested sequence Wizard lets you to select the best strategy for the next draw. The software will even print your lottery tickets, download the latest results, create a wheeling system, check your tickets for winning combinations.
This lottery software works with almost all lotto-type lotteries that draw 5-6 numbers out of a number pool from 1 to 99.";
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 = '';
}
}