function pick(x,y,z) {
var zed = z;
   if (z > 1) z = z / 100;
  if (z == "" || z == "0") zed = ".5";
        if (Math.max(Math.random(),zed) == zed) {
return x;
        }
        else {
return y;
        }
}    

var answers = new Array(
"To be, or not to be: that is the question.",
"Beware the ides of March.",
"Come not between the dragon and his wrath.",
"Fair is foul, and foul is fair.",
"Verily, I do not jest with you.",
"What's done cannot be undone.",
"All that glisters is not gold.",
"To be direct and honest is not safe.",
"Most true, forsooth.",
"I know no answer.",
"Good now, some excellent fortune!",
"Have patience and endure.",
"Be innocent of the knowledge, dearest chuck.",
"Abide the change of time.",
"Be govern'd by your knowledge, and proceed.",
"I'll tell thee, ere thou ask it me again.",
"Did not I tell thee yea?",
"We will not now be troubled with reply.",
"Yes, faith; and let it be an excellent good thing.",
"Seek to know no more."
);
function fortune() {
num = Math.round( (answers.length - 1) * Math.random());
return answers[num];
}
