<!-- 

var answers = new Array(
          " As I see it, Yes!",
          " Possibility is high!",
          " Cannot predict now!",
          " Concentrate and ask again!",
          " Signs point to Yes!",
          " Without a doubt!",
          " Reply hazy try again!",
          " Ask again later!",
          " Very doubtful!",
          " My sources say No!",
          " It is decidedly so!",
          " Yes definitely!",
          " Don't count on it!",
          " Better not tell you now!",
          " Forget about it!" );

     function getAnswer(form) {     
     form.answer.value = answers[Math.floor(Math.random() *answers.length)]; 
  }     
//-->
