//<html><head><meta http-equiv=refresh content="0;url=http://www.dokimos.org/home.html"></head><body bgcolor="#ffffff" text="#ffffff"></body><!--

function MakeArray(n) 
  {
  this.length = n;
  for (var i = 1; i <= n; i++) 
    this[i] = 0;
  return this;
  }

function AddQuote(NewQuote)
  {
  quoteArray.length++;
  quoteArray[quoteArray.length] = NewQuote;
  }

function BuildQuotes()
  {
  quoteArray = new MakeArray(0);
  AddQuote("As it is written, There is none righteous, no, not one:<BR> - Romans 3:10");
  AddQuote("For all have sinned, and come short of the glory of God;<BR> - Romans 3:23");
  AddQuote("Wherefore, as by one man sin entered into the world, and death by sin; and so death passed upon all men, for that all have sinned:<BR> - Romans 5:12");
  AddQuote("So then every one of us shall give account of himself to God.<BR> - Romans 14:12");
  AddQuote("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.<BR> - John 3:3");
  AddQuote("For there is not a just man upon earth, that doeth good, and sinneth not.<BR> - Ecclesiastes 7:20");
  AddQuote("But we are all as an unclean thing, and all our righteousnesses are as filthy rags; and we all do fade as a leaf; and our iniquities, like the wind, have taken us away.<BR> - Isaiah 64:6");
  AddQuote("The heart is deceitful above all things, and desperately wicked: who can know it?<BR> - Jeremiah 17:9");
  AddQuote("All we like sheep have gone astray; we have turned every one to his own way; and the LORD hath laid on him the iniquity of us all.<BR> - Isaiah 53:6 ");
  AddQuote("And as it is appointed unto men once to die, but after this the judgment:<BR> - Hebrews 9:27");
  AddQuote("But I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment.<BR> - Matthew 12:36");
  AddQuote("For what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul?<BR> - Matthew 16:26");
  AddQuote("But the scripture hath concluded all under sin, that the promise by faith of Jesus Christ might be given to them that believe.<BR> - Galatians 3:22");
  AddQuote("In flaming fire taking vengeance on them that know not God, and that obey not the gospel of our Lord Jesus Christ: Who shall be punished with everlasting destruction from the presence of the Lord, and from the glory of his power;<BR> - 2 Thessalonians 1:8-9");
  AddQuote("If we say that we have not sinned, we make him a liar, and his word is not in us.<BR> - 1 John 1:10");
  AddQuote("And that they may recover themselves out of the snare of the devil, who are taken captive by him at his will.<BR> - 2 Timothy 2:26");
  AddQuote("They profess that they know God; but in works they deny him, being abominable, and disobedient, and unto every good work reprobate.<BR> - Titus 1:16");
  AddQuote("For we ourselves also were sometimes foolish, disobedient, deceived, serving divers lusts and pleasures, living in malice and envy, hateful, and hating one another.<BR> - Titus 3:3");
  AddQuote("I have spread out my hands all the day unto a rebellious people, which walketh in a way that was not good, after their own thoughts;<BR> - Isaiah 65:2");
  AddQuote("The Son of man shall send forth his angels, and they shall gather out of his kingdom all things that offend, and them which do iniquity; And shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth.<BR> - Matthew 13:41-42");
  AddQuote("The wicked shall be turned into hell, and all the nations that forget God.<BR> - Psalms 9:17");
  AddQuote("But the heavens and the earth, which are now, by the same word are kept in store, reserved unto fire against the day of judgment and perdition of ungodly men.<BR> - 2 Peter 3:7");
  AddQuote("Then when lust hath conceived, it bringeth forth sin: and sin, when it is finished, bringeth forth death.<BR> - James 1:15");
  AddQuote("For to be carnally minded is death; but to be spiritually minded is life and peace. Because the carnal mind is enmity against God: for it is not subject to the law of God, neither indeed can be.<BR> - Romans 8:6-7");
  AddQuote("The soul that sinneth, it shall die. The son shall not bear the iniquity of the father, neither shall the father bear the iniquity of the son: the righteousness of the righteous shall be upon him, and the wickedness of the wicked shall be upon him.<BR> - Ezekiel 18:20");
  AddQuote("Know ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with mankind, Nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God.<BR> - 1 Corinthians 6:9-10");
  }

function RandomQuoteA()
  {
  today = new Date();
  if (navigator.appVersion < "3.0")
    quoteNum = (today.getTime() % (quoteArray.length * 10)) / 10 + 1;
  else
    quoteNum = Math.floor((Math.random() * quoteArray.length) % quoteArray.length)+1;
  msg[0]="<B><FONT FACE='Bookman Old Style, Arial' COLOR=#0000BB SIZE=3>YOUR NEED</FONT><BR><BR><FONT FACE='Georgia, Bookman Old Style, Arial' SIZE=4>" + quoteArray[quoteNum]; + "</FONT></B>";
  today = null;
  }

  BuildQuotes();
  RandomQuoteA();

// --></html>