Fortune Cookie Script 9

<script>
//fcs9
var Quotation=new Array()
Quotation[0] = "Make one person smile today.";
Quotation[1] = "Keep true to the dreams of your youth.";
Quotation[2] = "You will have good luck and overcome many hardships.";
Quotation[3] = "Apply yourself to the basics and progress will follow.";
Quotation[4] = "Sometimes the wisest person is dressed in the rudest clothing.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
