function procAnimal( form ) {

   noAns = "\n\n    You chose No answer for this one--no explanations available."

   text = ""

   text = "1. This animal represents the personality of the person you would be attracted to in real life situation."
  
 if ( form.animal[0].checked ) {
	text += " You chose Rabbit - In a real life situation you would be attracted to a person who is cold as ice on the outside, but warm inside."
   } else if ( form.animal[1].checked ) {
	text += " You chose Sheep - In a real life situation you would be attracted to a person who is obedient and warm."
   } else if ( form.animal[2].checked ) {
	text += " You chose Deer - In a real life situation you would be attracted to a person who is elegant and well-mannered."
   } else if ( form.animal[3].checked ) {
	text += " You chose Horse - In a real life situation you would be attracted to a person who is unbridled, free-spirited and free."
   } else 
	text += noAns


   text += "\n\n2. This animal represents the impression that you would like to give to your partner."

 if ( form.you[0].checked ) {
	text += " You chose Dog - You like others to see you as loyal and faithful."
   } else if ( form.you[1].checked ) {
	text += " You chose Cat - You like others to see you as stylish."
   } else if ( form.you[2].checked ) {
	text += " You chose Horse - You like others to see you as optimistic."
   } else if ( form.you[3].checked ) {
	text += " You chose Snake - You like others to see you as flexible."
   } else 
	text += noAns


   text += "\n\n3. This animal represents the behavior that would cause you to break up with your partner."

   if ( form.disappear[0].checked ) {
	text += " You chose Lion - Your partner's arrogance and authoritative behavior would cause you to break up."
   } else if ( form.disappear[1].checked ) {
	text += " You chose Snake - Your partner is too emotional and moody and you don't know how to please him/her."
   } else if ( form.disappear[2].checked ) {
	text += " You chose Crocodile - Your partner's ruthlessness would cause you to break up."
   } else if ( form.disappear[3].checked ) {
	text += " You chose Shark - Your partner's insecurity would cause you to break up."
   } else
	text += noAns

    
   text += "\n\n4. This animal represents the kind of relationship that you would like to build with your partner."
  
   if ( form.speak[0].checked ) {
	text += " You chose Sheep - You want a relationship where both know what the other person is thinking without saying a word."
   } else if ( form.speak[1].checked ) {
	text += " You chose Horse - You want a relationship where both of you should be able to talk about everything and anything with no secrets kept."
   } else if ( form.speak[2].checked ) {
	text += " You chose Rabbit - You want a relationship that makes you feel warm and always in love."
   } else if ( form.speak[3].checked ) {
	text += " You chose Bird - You want a long-lasting relationship."
   } else 
	text += noAns


   text += "\n\n5. This animal shows whether you are capable of committing adultery."

   if ( form.companion[0].checked ) {
	text += " You chose Human - You'll probably not be untrue."
   } else if ( form.companion[1].checked ) {
	text += " You chose Pig - You can't resist desire and lust so you are likely to commit adultery."
   } else if ( form.companion[2].checked ) {
	text += " You chose Cow - You are tolerant and you will try very hard not to be untrue."
   } else if ( form.companion[3].checked ) {
	text += " You chose Bird - You don't like to make commitments and are likely to commit adultery."
   } else
	text += noAns


   text += "\n\n6. This animal represents your views about marriage."

   if ( form.pet[0].checked ) {
	text += " You chose Dinosaur - You are quite pessimistic and you don't think happy marriages exist anymore nowadays."
   } else if ( form.pet[1].checked ) {
	text += " You chose White tiger - You think marriage is something precious, once you get married, you'll treasure it and your partner very much."
   } else if ( form.pet[2].checked ) {
	text += " You chose Polar bear - You are afraid of marriage, you think it would take away your freedom."
   } else if ( form.pet[3].checked ) {
	text += " You chose Leopard - You always wanted to get married, but in fact, you don't know what it's all about."
   } else
	text += noAns


   text += "\n\n7. This animal represents your views about love at this present moment."

   if ( form.prefer[0].checked ) {
	text += " You chose Lion - You always thirst for love, you can do anything for it, but you won't fall for it easily."
   } else if ( form.prefer[1].checked ) {
	text += " You chose Cat - You are quite self-centered; you think of love as something you can get and trash anytime you want."
   } else if ( form.prefer[2].checked ) {
	text += " You chose Horse - You don't want to be tied by a steady relationship, you just want to flirt."
   } else if ( form.prefer[3].checked ) {
	text += " You chose Pigeon - You think of love as a commitment for both parties."
   } else
	text += noAns


   form.explanations.value = text

} // procAnimal
