
document.write('<font face="arial" size="2" color="white">');
document.write('<center>');


var howMany = 4
var quote = new Array(howMany+1)

quote[0]="In this was manifested the love of God toward us, because that God has sent <br>his only begotten Son into the world, at we might live through him. <br>John 4,9 "
quote[1]="Yet to all who received him, to those who believed in his name, he gave the right to become children of God<br>children born not of natural descent, nor of human decision or a husbands will, but born of God<br> John 1,12"
quote[2]="And other fell on good ground, and did yeld fruit that sprang up and increased;<br>and brought forth, some thirty, and some sixty and some one hundred.<br>Mark 4,8" 
quote[3]="He that loveth not, knoweth not God; for God is love<br>I John 4,8"
quote[4]="And Jesus answered him, get thee behind me: for it is written,<br> Thou shalt worship The Lord thy God, and him only shalt thou serve.<br>Luke 4,8"


function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)

document.write('</center></font>');






