Fortune Cookie Script 1

<script>
//fcs1
var Quotation=new Array()
Quotation[0] = "You will discover the truth in time.";
Quotation[1] = "Remember to share good fortune as well as bad with your friends.";
Quotation[2] = "You should be able to make money and hold on to it.";
Quotation[3] = "A good time to start something new.";
Quotation[4] = "A handful of patience is worth more than a bushel of brains.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
