<!--
function FindFaceCharacteristics( facetype ) {
  var toReturn
    if ( facetype=="Jade Face" ) {
      // Jade Face
      toReturn =
	"Positive Aspects: You have an attractive and mysterious aura.  You are beautiful and prize beauty.  You have an excellent memory.  You have an optimistic attitude and rarely become discouraged.  You are adventurous, not afraid to start or try new things, and have tremendous energy. "
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may harbor grudges.  You may be vain and sometimes superficial.  You may suffer from mood swings.  You dislike routine and may be chauvenistic.  You may be overly demanding."
	}
    else if ( facetype=="Jade - Water Mixed Face" ) {
      // Jade - Water Mixed Face
      toReturn =
	"You are a mixture of the Jade Face and Water Face characteristics.  It is difficult to determine specifically which characteristics without a more careful analysis.  To get an idea of the types of characteristics, look at the individual Jade Face and Water Face characteristics.  To see the Jade Face characteristics, try entering the values of 1,2,1,3,no.  To see the Water Face characteristics, try entering the values of 1,1,1,1,yes."
	}
    else if ( facetype=="Fire Face" ) {
      // Fire Face
      toReturn =
	"Positive Aspects: You are bright, sensitive, and ambitious.  Your passion can be all consuming and contagious.  You learn quickly and readily generate ideas.  You have a penetrating insight into all emotional, theoretical, and practical matters.  "
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may have difficulty trusting others.  You may often be oversensitive.  You may often be overly dramatic and might have difficulty distinguishing between appearance and reality.  You have difficulty finding the discipline or energy to put your ideas into practice."
	}
    else if ( facetype=="Wood Face" ) {
      // Wood Face
      toReturn =
	"Positive Aspects: You are stable and enduring.  You are able to protect others.  You are very sociable.  You are assertive and goal oriented.  You learn and develop slowly but steadily even though you may think quickly.  You are comfortable as a homebody that grows roots or as an adventurer that sails the seas."
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may be contentious.  You may be a social butterfly or unable to commit.  You may be unable to hide or control your feelings. "
	}
    else if ( facetype=="Water Face" ) {
      // Water Face
      toReturn = 
	"Positive Aspects: You are adaptable and can fit in any social situation or condition.  You can be serene and calming or stormy and disrupting.  You prefer mental activities over most physical activities.  You are very clever and have a deep insight.  You have a deep sensuality and many erotic thoughts. " 
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may be fickle and whimsically changeable.  You may be somewhat overweight.  You prefer not to engage in physical activities.  You may be somewhat greedy.  You may have a dependent type of personality.  You may be bored with marriage and might question the benefits of having children."
	}
    else if ( facetype=="Metal Face" ) {
      // Metal Face
      toReturn =
	"Positive Aspects: You are stable and have uncorruptible principles.  You are honest, selfless, and dedicated to what you believe to be right.  You are rarely angry.  You may take your time to make a decision, but when your mind is made up, you are resolute.  You are sympathetic and just.  You are intelligent as well as pragmatic.   "
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may have difficulty expressing or demonstrating your emotions.  You may prefer solitude unless you find others who share your views.  Unless your relationships are enduringly stimulating, you may become bored and seek new relationships."
	}
    else if ( facetype=="King Face" ) {
      // King Face
      toReturn =
	"Positive Aspects: You are strong and a natural leader.  You enjoy social gatherings.  Your inherent authority, passion, and spontaneity allows you to win over others with ease.  You succeed at almost everything.  You prize loyalty.  You are a great lover."
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may be smug and self-satisfied.  You may be overbearing at times.  You may surround yourself with obsequious people.  You dislike when others challenge your views. You may lack true friends and be a loner.  You may think that love does not require fidelity."
	}
    else if ( facetype=="Earth Face" ) {
      // Earth Face
      toReturn =
	"Positive Aspects: You are aggressive, self-made, and resilient.  You seek after knowledge.  You are determined and ambitious.  When you work with others of similar caliber, you can achieve great things.  You have a thirst for action and power.  You have enduring patience and rarely tire.  You crave and provide tremendous security."
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may have difficulty showing appreciation.  You may be spiteful and stubborn.  You may rely more on your knowledge than on thinking.  You may be tough on those with whom you are close.  You might tend not to socialize, and you might not take criticism well.  You may have a powerful temper."
	}
    else if ( facetype=="Mountain Face" ) {
      // Mountain Face
      toReturn =
	"Positive Aspects: You are an extreme form of Earth Face.  You are very aggressive, completely self-made, and enduringly resilient.  You are determined and ambitious.  When you work with others of similar caliber, you can achieve great things.  You have a thirst for action and power.  You have enduring patience and rarely tire.  You crave and provide tremendous security."
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects: You may have great difficulty showing appreciation.  You may be extremely spiteful and overly stubborn.  You rely only on your knowledge, and you rarely question anything that you come to believe or think.  You may be tough on those with whom you are close.  You might tend not to socialize, and you might not take criticism well.  You may have an explosive temper."
	}

    else if ( facetype=="Wall Face" ) {
      // Wall Face
      toReturn =
	"Positive Aspects:  You work very hard. You are highly creative.  You are a survivor and protector.  You can endure tremendous harrassment or trials as long as your self-confidence is not shaken.  Your spontaneity can be the source of much charm."
	+ "\r\n" 
	+ " "
	+ "\r\n" 
	+ 
	"Negative Aspects:  You can be awkward or lazy.  You may be inherently mistrusting.  You may be unable to take criticism well if it could impact your self-confidence.  You may have difficulty putting ideas into practice because of being distracted by a better possiblity or an inability to plan.  You dislike authority unless you have it.  You may be unable to express your feelings.  You may tend to quit and start something else or with someone else rather than salvage an existing project or relationship."
	}
    else if ( facetype=="Mixed Face" ) {
      // Mixed Face
      toReturn =
	"Your Positive and Negative Aspects can not be determined.  Your face is a combination of one of the others or requires a more detailed analysis than is provided by this form."
	}
    else { alert("There is some error in the JavaScript") }

  return toReturn   
    }
//-->
