
document.write('<font face="arial" size="2" color="blue">');
document.write('<font face="arial" size="2" color="black"><strong>Words of Jesus</strong></font><br>');

var howMany = 5
var quote = new Array(howMany+1)

quote[0]="<b>Blessed are they tham mourn,<br>for they will be comforted.  (Mt 5,4)</b>"
quote[1]="<b>Then he said to him, Rise and go; your faith has made you well (John 17,18)</b>"
quote[2]="<b>Man does not live on bread alone, but on every word that comes from the mouth of God.  (Mt 4,4)</b>" 
quote[3]="<b>Ask and it will be given to you; seek and you will find; knock and the door will be opened to you. (Mt 7,7)</b>"
quote[4]="<b>Blessed are those who hunger and thirst for righteousness, for they will be filled. (Mt 5,6)</b>"
quote[5]="<b>Blessed are the pure in heart, for they will see God. (Matthew 5,8)</b>"



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('</font>');





