Fortune Cookie Script 3

<script>
//fcs3
var Quotation=new Array()
Quotation[0] = "Don't let unexpected situations throw you.";
Quotation[1] = "You are very expressive and positive in word, act and feeling.";
Quotation[2] = "You will soon be crossing the great waters.";
Quotation[3] = "You are the master of every situation.";
Quotation[4] = "You will win success in whatever you adopt.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
