var top_fortune = 45; // The highest number

function Num2String (num, width) {
    var result = "";
    var limit = Math.pow(10,width-1);
    var absnum = Math.abs(num);
    var zeroes = "";
    if (absnum != num) {
        limit = limit/10;
        zeroes = "-";};
    if (absnum >= limit*10)
    {result = zeroes + (limit*10 - 1) }
    while (result == "")    
    {if (absnum > (limit-1)) {result = zeroes + absnum}     
    else {zeroes += "0";
          limit = limit/10; }}
    if (absnum == 0) {result = zeroes};
    return result;
    };

function StringArray(n) {
	this.length = n
	for (var i = 0; i < n; i++) {
		this[i] = "." }
		return this };

fortune_text = new StringArray(top_fortune)
fortune_text[0] = "Keep on charging the enemy so long as there is life. Lucky Numbers 8, 13, 22, 34, 36, 45"
fortune_text[1] = "Your love of gardening will take on new meaning in your life. Lucky Numbers 11, 14, 20, 24, 26, 40"
fortune_text[2] = "Everyone agrees you are the best. Lucky Numbers 9, 10, 11, 31, 32, 33"
fortune_text[3] = "Pardon is the choicest flower of victory. Lucky Numbers 11, 14, 15, 24, 28, 34"
fortune_text[4] = "A quiet evening with friends is the best tonic for a long day. Lucky Numbers 12, 13, 14, 19, 20, 39"
fortune_text[5] = "The greater part of inspiration is perspiration. Lucky Numbers 5, 7, 23, 27, 28, 38"
fortune_text[6] = "Smile if you like this fortune cookie. Lucky Numbers 11, 19, 30, 31, 45, 46"
fortune_text[7] = "Don\'t behave with cold manners. Lucky Numbers 1, 7, 20, 34, 35, 41"
fortune_text[8] = "You will never regret the present, you live life to its fullest. Lucky Numbers 11, 14, 24, 26, 31, 33"
fortune_text[9] = "An old wish will come true. Lucky Numbers 6, 7, 20, 26, 29, 38 "
fortune_text[10] = "Good news will be brought to you by mail. Lucky Numbers 11, 13, 24, 25, 26, 40"
fortune_text[11] = "No need to worry! You will always have everything that you need. Lucky Numbers 3, 4, 12, 13, 34, 37"
fortune_text[12] = "Ideas you believe are absurd ultimately lead to success! Lucky Numbers 4, 5, 8, 24, 36, 45"
fortune_text[13] = "A huge fortune at home is not as good as money in use. Lucky Numbers 2, 10, 12, 24, 34, 44"
fortune_text[14] = "The courage to be great lies deep within each of us. Lucky Numbers 3, 14, 18, 22, 29, 44"
fortune_text[15] = "You will be blessed with longevity. Lucky Numbers 2, 6, 12, 34, 35, 37"
fortune_text[16] = "Everything has beauty but not everybody sees it. Lucky Numbers 6, 24, 25, 26, 28, 32"
fortune_text[17] = "Do onto others as you wish others do onto you. Lucky Numbers 22, 29, 37, 39, 45, 47"
fortune_text[18] = "You should have a talk with your friend today. Lucky Numbers 4, 7, 12, 15, 21, 22"
fortune_text[19] = "Your ability is appreciated. Lucky Numbers 30, 32, 33, 37, 39, 41"
fortune_text[20] = "Do not desire what you do not need. Lucky Numbers 3, 6, 16, 28, 37, 40"
fortune_text[21] = "Happiness will bring you good luck. Lucky Numbers 1, 3, 9, 19, 29, 39"
fortune_text[22] = "Things are turning for the bright side. Lucky Numbers 17, 33, 38, 39, 40, 44"
fortune_text[23] = "Change is happening in your life, so go with the flow! Lucky Numbers 14, 15, 18, 24, 36, 45"
fortune_text[24] = "Inspiration will strike when least expected. 20 22 39 21 32 19"
fortune_text[25] = "Many a false step is made by standing still. Lucky Numbers 13, 14, 18, 21, 23, 37"
fortune_text[26] = "Your ability to find the silly in the serious will take you far! Lucky Numbers 3, 7, 10, 31, 33, 38"
fortune_text[27] = "Alas! The onion you are eating is someone else's water lily. Lucky Numbers 7, 14, 21, 22, 32, 45"
fortune_text[28] = "You will always get what you want through your charm and personality. Lucky Numbers 15, 16, 17, 34, 35, 37"
fortune_text[29] = "Judge not according to the appearance. Lucky Numbers 17, 21, 23, 25, 32, 38"
fortune_text[30] = "Your fastidious nature has much more fun this year! Lucky Numbers 4, 8, 15, 30, 32, 45"
fortune_text[31] = "Someone will invite you to a Karaoke party. Lucky Numbers 7, 21, 23, 25, 32, 38"
fortune_text[32] = "Depend on your feet, you can climb the highest moutnain. Lucky Numbers 8, 11, 14, 25, 34, 38"
fortune_text[33] = "You must reserve time for quiet reflection. 48 25 17 26 44 1"
fortune_text[34] = "Say hello to others. You will have a happier day. Lucky Numbers 6, 14, 17, 27, 33, 34"
fortune_text[35] = "You will be advanced socially, without any special effort. Lucky Numbers 2, 14, 17, 27, 28, 34"
fortune_text[36] = "Don\'t be over self-confident with your first impression on others. Lucky Numbers 4, 10, 16, 20, 24, 41"
fortune_text[37] = "Do not mistake temptation for opportunity. Lucky Numbers 12, 14, 22, 23, 24, 43"
fortune_text[38] = "Your skills will accomplish what the force of many cannot. Lucky Numbers 2, 24, 25, 43, 44, 45"
fortune_text[39] = "Life to you is a dashing and bold adventure. Lucky Numbers 14, 15, 18, 24, 36, 45"
fortune_text[40] = "What is the distance between the eyes and the soul. Lucky Numbers 21, 23, 26, 28, 33, 45"
fortune_text[41] = "You can have your cake and eat it too. Lucky Numbers 4, 7, 11, 12, 35, 38"
fortune_text[42] = "You are idealistic and romantic."
fortune_text[43] = "You\'ll accomplish more later if you take some time for yourself."
fortune_text[44] = "Active measures will restore your sense of control. 46 12 14 16 33 15"
fortune_text[45] = "Advancement will come with hard work. Lucky Numbers 6, 13, 19, 33, 34, 43"


var fortune_number = Math.round ((top_fortune + 1) * Math.random() - 0.5)

function get_fortune_src() {
   var fortune_string = Num2String( fortune_number, 3 ); // Multiply the random by the number of fortunes
   var fortune_pic = "fortune\/fort" + fortune_string + ".jpg";
   return fortune_pic; };

function write_fortune(){
document.write("<IMG HEIGHT=90 WIDTH=337 SRC=\"" + get_fortune_src() + "\" ALT=\"" + fortune_text[fortune_number]+"\">");
};
