Fortune Cookie Script 2

<script>
//fcs2
var Quotation=new Array()
Quotation[0] = "You are heading for a land of sunshine.";
Quotation[1] = "Consolidate rather than expand business projects in the near future.";
Quotation[2] = "You have a reputation for being straightforward and honest.";
Quotation[3] = "A friend asks only for your time not your money.";
Quotation[4] = "There is a true and sincere friendship between you both.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
