Quote randomizer not very random, ideas?

Hello, I’m using the quote randomizer from kirupa, but the same couple lines out text seems to arise far too frequently. any ideas? I was thinking that i could remove the random part of the script, and just make it go from 1-100 in order, if someone could tell me how to do that. I don’t really know actionscript at all.

current AS:

/****************************************
Random Quotes Script*****************
****************************************/
ranQuote = new LoadVars();
ranQuote.onLoad = function(success) {
if (success) {
RanNum = Math.ceil(Math.random()*110);
ran = this[“quote”+RanNum];
quote_txt.text = ran;
}
else {
quote_txt.text = “The text failed to load due to an error”;
}
}
ranQuote.load(“Quotes.txt”);
stop();