// JavaScript Document

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  John Hobbs (jaalibbrandl@hotmail.com) -->
<!-- Web Site:  http://jsquared.faithweb.com -->
<!-- Check out:  http://jsquared.faithweb.com/cookie/fortune.html for a neat layout -->

<!-- Begin
var quotes = new Array(11) //Add your quotes below
quotes[0]="Santa and all his reindeer send a big Hello to you!";
quotes[1]="If you've been good, send Santa a letter to let him know.";
quotes[2]="Mrs.Claus hopes you have a wonderful holiday!";
quotes[3]="May joy come to you this holiday!";
quotes[4]="Your wishes will be granted in the New Year!";
quotes[5]="Happy Holidays!";
quotes[6]="Enjoy the holiday season!";
quotes[7]="May all your days be happy and bright!";
quotes[8]="Be good, Santa is making his list and checking it twice!";
quotes[9]="Greetings from the North Pole!";
quotes[10]="Joy to the world!";
quotes[11]="Peace on earth!";

function fortune() {
var rand_int = Math.floor(Math.random()*12); //Get a number for picking the quote
document.all.myspan.innerHTML=(quotes[rand_int]); //Put the quote in the box
}
function numberstoo() {
var space = ('      ') //Spacer for between numbers
var rand_inta = Math.floor(Math.random()*100); //Get first number
var rand_intb = Math.floor(Math.random()*100); //Get second number
var rand_intc = Math.floor(Math.random()*100); //Get third number
var rand_intd = Math.floor(Math.random()*100); //Get fourth number
var rand_inte = Math.floor(Math.random()*100); //Get fifth number
document.all.myspant.innerHTML=(rand_inta+space+rand_intb+space+rand_intc+space+rand_intd+space+rand_inte); //Print it all into the second box
}
//  End -->