
// Copyright 2007, Steve McLaughlin. All rights reserved.
// iPhone8ball.com


var t0;
var ar8Ball = new Array;
ar8Ball[0]="Outlook Good";
ar8Ball[1]="Cannot Predict Now";
ar8Ball[2]="Very Doubtful";
ar8Ball[3]="Outlook Not So Good";
ar8Ball[4]="Yes";
ar8Ball[5]="Signs Point To Yes";
ar8Ball[6]="My Reply Is No";
ar8Ball[7]="Better Not Tell<br>You Now";
ar8Ball[8]="My Sources Say No";
ar8Ball[9]="Don't Count On It";
ar8Ball[10]="Yes Definitely";
ar8Ball[11]="Without A Doubt";
ar8Ball[12]="You May Rely On It";
ar8Ball[13]="It Is Decidedly So";
ar8Ball[14]="As I See It, Yes";
ar8Ball[15]="Ask Again Later";
ar8Ball[16]="It Is Certain";
ar8Ball[17]="Reply Hazy,<br>Try Again";
ar8Ball[18]="Most Likely";
ar8Ball[19]="Concentrate And<br>Ask Again";

function randomize(lo,hi)
{ return (lo + Math.floor(Math.random()*((1+hi)-lo)));
} 

function ksa8Ball()
{
  self.clearTimeout(t0);
  o = document.getElementById('theBall');
  v = '<div id=theBall style=">';
  v = v + ' width: 125px; height:125px;';
  v = v + '">';
  v = v + '<a href="javascript:ask8Ball();">';
  v = v + '<img border=0 src="images/8ball-ask.gif">';
  v = v + '</a>';
  v = v + '</div>';
  o.innerHTML = v;   
}

function ask8Ball()
{
  o = document.getElementById('theBall');
  v = '<div id=theBall style="';
  v = v + ' width: 125px; height:125px;';
  v = v + ' background-repeat: no-repeat;';
  v = v + ' background-image: url(images/8ball-answer.gif);';
  v = v + ' text-align: center;';
  v = v + ' font-family: Arial;';
  v = v + ' font-size: 10pt;';
  v = v + ' color: #ffffff;';
  v = v + '"><br><br><br>';
  v = v + ar8Ball[randomize(0,19)];
  v = v + '</div>';
  o.innerHTML = v;
  t0 = self.setTimeout('ksa8Ball()',1 * 2500);
}
