<!-- Original:  Ronnie T. Moore -->
<!-- Web Site:  The JavaScript Source -->
<!-- Based on code by: Michael Carpenter -->
<!-- URL:  http://www.michaelcarpenter.net -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var answers = new Array(
"Without a doubt", 
"The answer lies in the Stars!",
"Only time will tell!",
"A stranger will let you know!",
"Yes!", 
"Probably so", 
"It isn't likely", 
"it's possible",
"Absolutely", 
"Not a chance",
"Ask again", 
"No", 
"I doubt it", 
"No Way"
);
function fortune() {
num = Math.round( (answers.length - 1) * Math.random());
return answers[num];
}
//  End -->