Fortune Cookie Script 8

<script>
//fcs8
var Quotation=new Array()
Quotation[0] = "Feel compassion for all life and give knowledge that you have.";
Quotation[1] = "Understand your personal power and use it to your advantage.";
Quotation[2] = "If you're not rejected at least three times a week, you're not really trying.";
Quotation[3] = "You will be fortunate in the opportunities presented to you.";
Quotation[4] = "Remember, being happy is not always being perfect.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
