var fDesc=new Array();
fDesc[0] = "UltraLott India is for the India SuperLotto, Thunderball, Easy Lotto and Fast 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.
Charts are provided showing when, how often, the frequency, and the expected drawing for each ball including how often the ball was drawn.";
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 = '';
}
}