// Random Quote Generator


<!--  Hide from other browsers

// Variables for random number generator.
   today=new Date();
   jran=today.getTime();
// Set to number of quotes available.
   var number=16;
// Becomes generated random number.
   var random_number=0;

// Random number generating function.
// Original generator by Paul Houle  (ph18@cornell.edu)
ia=9301;
ic=49297;
im=233280;
jran = (jran*ia+ic) % im;
random_number=Math.ceil( (jran/(im*1.0)) *number);

quotes = new Array(16);
authors = new Array(16);

quotes[0] = "Jesus answered and said unto him, Verily, verily, I say unto thee, Except a man be born again, he cannot see the kingdom of God."
authors[0] = "John 3:3  ";

quotes[1] = "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life."
authors[1] = "John 3:16";

quotes[2] = "And ye shall know the truth, and the truth shall make you free."
authors[2] = "John 8:32";

quotes[3] = "Jesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live:"
authors[3] = "John 11:25";

quotes[4] = "he hath sent me to bind up the brokenhearted, to proclaim liberty to the captives, and the opening of the prison to them that are bound"
authors[4] = "Isaiah 61:1";

quotes[5] = "And they overcame him by the blood of the Lamb, and by the word of their testimony; and they loved not their lives unto the death."
authors[5] = "Revelations 12:11";

quotes[6] = "Then the Lord put forth his hand, and touched my mouth. And the Lord said unto me, Behold, I have put my words in thy mouth."
authors[6] = "Jeremiah 1:9";

quotes[7] = "But upon mount Zion shall be deliverance, and there shall be holiness; and the house of Jacob shall possess their possessions."
authors[7] = "Obadiah 17";

quotes[8] = "Come unto me, all ye that labour and are heavy laden, and I will give you rest."
authors[8] = "Matthew 11:28";

quotes[9] = "And I will give unto thee the keys of the kingdom of heaven: and whatsoever thou shalt bind on earth shall be bound in heaven: and whatsoever thou shalt loose on earth shall be loosed in heaven."
authors[9] = "Matthew 16:19";

quotes[10] = "And when ye stand praying, forgive, if ye have ought against any: that your Father also which is in heaven may forgive you your trespasses."
authors[10] = "Mark 11:25";

quotes[11] = "And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you."
authors[11] = "Luke 11:9";

quotes[12] = "But he said, Yea rather, blessed are they that hear the word of God, and keep it."
authors[12] = "Luke 11:28";

quotes[13] = "And he said, The things which are impossible with men are possible with God."
authors[13] = "Luke 18:27";

quotes[14] = "Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord."
authors[14] = "I Corinthians 15:58";

quotes[15] = "Stand fast therefore in the liberty wherewith Christ hath made us free, and be not entangled again with the yoke of bondage."
authors[15] = "Galatians 5:1";

quotes[16] = "And we know that all things work together for good to them that love God, to them who are the called according to his purpose."
authors[16] = "Romans 8:28";


// Called by View Source button - displays source of file.
function viewSource()
   {
   var current_url="";
   current_url=document.location;
   window.location="view-source:"+current_url;
   }

// Called by Full Window button - loads file to full window for easy saving.
function WinOpen() 
   {
   alert('\nPage will load to full screen.\n\nUse View/Document Source from menu bar to view source.\n\nUse File/Save As from menu bar to save.\n\nClose new window to return to this page. ');
   window.open("js-rdquo.htm","DisplayWindow","menubar=yes,scrollbars=yes");
   window.open("js-rdquo.htm","DisplayWindow","menubar=yes,scrollbars=yes");   // double for Macs
   }
// Stop hiding from other browsers -->
