Fortune Cookie Script 10

<script>
//fcs10
var Quotation=new Array()
Quotation[0] = "Your generosity will pay off.";
Quotation[1] = "Time and patience are called for. Many surprises await you!";
Quotation[2] = "You are a dreamer and your thinking is inspirational.";
Quotation[3] = "Avert misunderstandings by calm, poise and balance.";
Quotation[4] = "You are strong and brave. Use your strength to pull through.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
