// Make SAyings for www.jesusforallnations.net

function makeSayings() {
        if((navigator.userAgent.indexOf("Mozilla/3.0") != -1) ||
        (navigator.userAgent.indexOf("MSIE")!= -1)) {
        Quotes = new Array();

Quotes[0] = "\"When one door closes, another opens; "+
	      "but we often look so long and so regretfully upon the closed " +
              "door that we do not see the one that has opened for us.\"";

Quotes[1] = "\"If we are ever in doubt about what to do, it is a good rule to ask "+
              "ourselves what we shall wish on the morrow that we had done.\"";

Quotes[2] = "\"No man can tell whether he is rich or poor by turning to his ledger. "+
              "It is the heart that makes a man rich.\"";

Quotes[3] = "\"The Christians who have turned the world upside down "+
              "have been men and women with a vision in their hearts "+
              "and the Bible in their hands.\"";

Quotes[4] = "\"Nothing is impossible; there are ways that lead to everything, "+
              "and if we had sufficient will, we should always have sufficient means. "+
              "It is often merely for an excuse that we say things are impossible.\"";

Quotes[5] = "\"This is the secret of joy. We shall no longer strive for our own way, "+
            "but commit ourselves, easily and simply, to God’s way, "+
  	        "acquiesce in his will, and in so doing find our peace.\"";

Quotes[6] = "\"It has been scientifically proven that worry, discord, "+
            "and melancholy undermine health. Good spirits make for good digestion. "+
	        "Cheerfulness costs nothing; yet is beyond price.\"";

Quotes[7] = "\"Say what you have to say, not what you ought. "+
            "Any truth is better than make-believe.\"";

Quotes[8] = "\"God is love and God is sovereign. His love disposes him to desire "+
              "our everlasting welfare, and His sovereignty enables him to secure it.\"";

Quotes[9] = "\"It’s up to me to use it. I must suffer if I lose it. "+
              "Give account if I abuse it. Just a tiny little minute, "+
              "But eternity is in it.\"";

Quotes[10] = "\"If God is diligent, surely we ought to be diligent in doing our duty to him. "+
              "Think how patient and how diligent God has been with us!\"";


var x = Math.floor(Quotes.length * Math.random());

        document.writeln("<FONT FACE='Arial' SIZE=2>");
        document.writeln(Quotes[x]);
        document.writeln("</FONT>"); 
        }
}

// END