function procLove02( form ) {

   noAns = "\n\n    No answer was chosen--no explanations available."

   text = ""

   text = "1. The road represents your attitude towards falling in love."
  
 if ( form.roadTo[0].checked ) {
	text += " You chose the short road. You fall in love quickly and easily."
   } else if ( form.roadTo[1].checked ) {
	text += " You chose the long road. You take your time and do not fall in love easily."
   } else 
	text += noAns


   text += "\n\n2. The number of red roses represents how much you give in a relationship, while the number of white represents what you expect in return."

   redNum = 0

   if ( form.roses.options[0].selected )
	redNum = 0
   else if ( form.roses.options[1].selected )
	redNum = 1
   else if ( form.roses.options[2].selected )
	redNum = 2
   else if ( form.roses.options[3].selected )
	redNum = 3
   else if ( form.roses.options[4].selected )
	redNum = 4
   else if ( form.roses.options[5].selected )
	redNum = 5
   else if ( form.roses.options[6].selected )
	redNum = 6
   else if ( form.roses.options[7].selected )
	redNum = 7
   else if ( form.roses.options[8].selected )
	redNum = 8
   else if ( form.roses.options[9].selected )
	redNum = 9
   else if ( form.roses.options[10].selected )
	redNum = 10
   else if ( form.roses.options[11].selected )
	redNum = 11
   else if ( form.roses.options[12].selected )
	redNum = 12
   else if ( form.roses.options[13].selected )
	redNum = 13
   else if ( form.roses.options[14].selected )
	redNum = 14
   else if ( form.roses.options[15].selected )
	redNum = 15
   else if ( form.roses.options[16].selected )
	redNum = 16
   else if ( form.roses.options[17].selected )
	redNum = 17
   else if ( form.roses.options[18].selected )
	redNum = 18
   else if ( form.roses.options[19].selected )
	redNum = 19
   else if ( form.roses.options[20].selected )
	redNum = 20

   give = redNum / 20 * 100
   ret  = 100 - give

   text += " You give " + give + "% " 
   text += "and expect " + ret + "% in return."


   text += "\n\n3. This question represents your attitude towards handling relationship problems."

   if ( form.fetch[0].checked ) {
	text += " You asked the family member to get your significant other. You like to avoid problems and hope that they will solve themselves."
   } else if ( form.fetch[1].checked ) {
	text += " You like to get the person yourself. You are a more direct person and like to work out problems immediately."
   } else
	text += noAns

    
   text += "\n\n4. The placement of the roses determines how much you like seeing your boy/girlfriend."
  
   if ( form.placeRoses[0].checked ) {
	text += " You place the roses by the windowsill. You are alright with not seeing him/her so often."
   } else if ( form.placeRoses[1].checked ) {
	text += " You place the roses on the bed.  You like to see him/her a lot."
   } else 
	text += noAns


   text += "\n\n5. This represents your attitude towards his/her personality."

   if ( form.pref[0].checked ) {
	text += " You prefer the person to be awake, you expect the person to change for you."
   } else if ( form.pref[1].checked ) {
	text += " You prefer the person to be asleep, you love the person the way s/he is."
   } else
	text += noAns


   text += "\n\n6. The road to home tells how long you stay in love with someone."

   if ( form.roadBack[0].checked ) {
	text += " You chose the short road. You fall out of love easily."
   } else if ( form.roadBack[1].checked ) {
	text += " You chose the longer road.  You will tend to stay in love for a long time."
   } else
	text += noAns


   form.explanations.value = text

} // procLove
