Fortune Cookie Script 4

<script>
//fcs4
var Quotation=new Array()
Quotation[0] = "A thrilling time is in your immediate future.";
Quotation[1] = "You are going to have a very comfortable old age.";
Quotation[2] = "You never hesitate to tackle the most difficult problems.";
Quotation[3] = "Your home is a pleasant place from which you draw happiness.";
Quotation[4] = "If your desires are not extravagant, they will be granted.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
