function MQuote (QNum) {
	var Quotes=new Array();
	Quotes[0]="Ask us how you can get replacement components for your machine for just $75!";
	Quotes[1]="What does a lifetime warranty from Lil' Orbits mean to you?";
	Quotes[2]="Replacement SS1200 Heating Element = $1,565.00? - not with our lifetime warranty! - it's just $75";
	Quotes[3]="Is warranty important to you? Be sure to ask us about our lifetime warranty.";
	Quotes[4]="&#34;When I deposit all my cash at the local bank I have to assure them I'm not laundering money!! The cash has a slight smell of donuts, but it sure is spendable!&#34; -Rob Bowe";
return Quotes[QNum];
}
function RandInt (Size) {
	var Rnum=Math.round(Math.random() * Size);
return Rnum;
}





