// JavaScript Document

rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
	var result = Math.ceil(rnd()*number);
	if (!result)result++;
        return result
};
var img_cnt1 = 10;
var img1 = rand(img_cnt1);
var link1;
var imgBanner1;
var width1
var height1
if (img1==1) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-0.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 0";
}
if (img1==2) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-1.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 1";
}
if (img1==3) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-2.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 2";
}
if (img1==4) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-3.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 3";
}
if (img1==5) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-4.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 4";
}
if (img1==6) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-5.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 5";
}
if (img1==7) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-5.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 6";
}
if (img1==8) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-7.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 7";
}
if (img1==9) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-8.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 8";
}
if (img1==10) {
link1="lucky-number.htm";
imgBanner1="lotto/lotto-ball-9.jpg";
width1="336";
height1="280";
alt1="Today's Lucky Number: 9";
}
document.write('<center><a href="' + link1 + '" target="_self">');
document.write('<img src="' + imgBanner1 + '" width=' + width1 + ' height=' + height1 + ' border=0 alt="' + alt1 + '"></a>');
document.write('</center>');
// End -->