<!-- 

if (parseInt(navigator.appVersion) < 4) {
var nquote = "Never say it can not be done."
}else{

var upperbound = 6
var lowerbound = 1
pick = Math.round((upperbound - lowerbound + 1) * Math.random())
nquotes = new Array
nquotes[0]=""
nquotes[1]=""
nquotes[2]=""
nquotes[3]=""
nquotes[4]=""
nquotes[5]=""
nquotes[6]=""
nquote = nquotes[pick]
document.write(nquote)
}
//-->