var fDesc=new Array();
fDesc[1] = "Mystery P.I., you've been hired by Grandma Rose to find her winning $488 Million lottery ticket. For achieving that, you´ll need to retrace Grandma's footsteps to collect clues by finding over 2200 hidden objects and solving puzzles.";
fDesc[2] = "carefully, trying to find the items on the list. When you see an item, just click on it to update the list. In order to finish the level you have to find all the items on the list. In each level, you have to find the “special clue” to finish it.";
fDesc[4] = "analysis to help you predict the next winning combination.";
fDesc[5] = "lottery software makes the tough strategy decisions easy, based on probability comparisons to your actual lottery results game history. Free trial.";
fDesc[6] = "Editor. Mathematical Systems Reducer. Calculations & My Tickets. Statistics sheet and graph charts. My Tickets Generator.";
fDesc[7] = "winning at least 3-fold! Covers 27 major lotteries in 4 countries. Internet connection required.";
fDesc[8] = "save your time and money. With the help of PowerLotto6, you can do a lot of filters that are impossible for hands calculation.";
fDesc[10] = "With the help of PowerLotto5, you can do a lot of filters that are impossible for hands calculation.";
fDesc[11] = "perfect for Syndicates, Top Number combinations, Lucky Dip+, Complete Lottery Wheels, Historical Statistics";
fDesc[12] = "tickets, generate tickets. Free online update history lottery data.";
fDesc[13] = "functions to give you that winning edge. Download an evaluation and experience the world of professional lottery playing.";
fDesc[14] = "new numbers, apply numerous filters and statistics to generated numbers. Power Player for Pick 3/4 supports more than 100 daily lotteries within the United States.";
fDesc[15] = "are complete draw-number databases for the UK, SA & NZ national lotteries. Lottery Assistant can calculate number combinations from data for virtually any lottery system. Reads .CSV files (spreadsheet compatible). Print numbers directly to lottery tickets. User friendly and intuitive.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}