/*--------------------------------------------------------------------------

   FILE:  JavaScript/tests/shower.js	
   AUTH:  Thuy Le			
   DATE:  October 28, 2003
   LMD :  February 2, 2009

   When you step into a shower, which part of the body do you wash first?

0. Armpits
1. Chest
2. Face
3. Hair
4. Privates
5. Shoulders
6. Others

--------------------------------------------------------------------------*/

part_picked = 0;			// Number of part(s) selected.
last_pick = 0;

/*
 *   Process selection of body part.
 */
function partResult( form ) 
{
	person_text = "";
	picked = 0;			// Number of parts picked
	total = 7;			// Total number of body parts
	i=0;				// Counter

	while ( i<total && !picked )
	{
		if (form.body[i].checked)
		{
			picked++;
			part_picked++;
		}
		i++;
	}

	if ( picked && part_picked == 1 )
	{
		i--;
		last_picked = i;
		person_text  = "You have selected ";
		person_text += getPart( i ) + ".\n\n";
		person_text += getResult( i );
	}
	else if ( part_picked > 1 )
	{
		person_text  = "You already picked a body part; it was "
		person_text += getPart( last_picked );
		person_text += ". Please press 'Reset' to select another part.\n\n";
		person_text += getResult( last_picked );
		form.body[last_picked].checked = true
	}
	else
		person_text = "You did not pick any body part!";

	document.forms[0].displayResult.value = person_text;

} 

/*
 *   Returns name of selected body part.
 */
function getPart ( sel )
{
	switch ( sel )
	{
		case 0: return "armpits"; break;
		case 1: return "chest"; break;
		case 2: return "face"; break;
		case 3: return "hair"; break;
		case 4: return "privates"; break;
		case 5: return "shoulders"; break;
		case 6: return "others"; break;
	}
}

/*
 *   Returns result.
 */
function getResult ( sel )
{
	result = "";

	switch ( sel )
	{
		case 0:	/*****************  armpits  *******************/
			result = "You are a dependable and hard working person. Generally "
			+ "very popular person as you are very down to earth and willing to "
			+ "help others. You tend to get yourself into trouble as you cannot tell "
			+ "if people are genuine towards you. You make very poor sex partner "
			+ "as you are the working type with an average talent. Your best partner "
			+ "in life will be those who choose Shoulders.";
			break;
		case 1: /******************  chest  ********************/
			result = "You are a practical person. You are straight forward and do not beat "
			+ "around the bush. To you, convenience is of paramount importance. You "
			+ "hate to be distracted when concentrating and are impatient with people "
			+ "who do not see things your way. You are a good sex partner and willing to try "
			+ "new things. Your best partner in life will be those who choose Hair.";
			break;
		case 2: /*******************  face  *******************/
			result = "Money is important to you and you will do anything to get it. "
			+ "Integrity and dignity is not important. You feel that friends are "
			+ "there to be used and life is one big hassle. Other people find it "
			+ "hard to understand you, but you are not concerned as to what they think. "
			+ "You are a very self-centered person. You are an average sex partner as "
			+ "you are too selfish and tend "
			+ "to be absorbed in self pleasure at the expense of your partner. Your best "
			+ "partner in life will be those who choose Privates and Others.";
			break;
		case 3: /*******************  hair  *******************/
			result = "You are an artistic type. Daydreaming is your hobby, but you can achieve "
			+ "what most other people cannot. You are lacking in dedication, but you will work "
			+ "tirelessly towards goals which are to your liking. Money is not "			
			+ "important. Friends are but only intellectuals and fellow artistic "
			+ "types. You make the best sex partner as you are most willing to explore "
			+ "and please the other partner. Talent is your main strength. Your best "
			+ "partner in life will be those who chose Chest and Privates.";
			break;
		case 4: /*****************  privates  *****************/
			result = "You are the shy type. You lack self confidence and tend to be bullied by "
			+ "others. You do not have lots of friends as others find you boring and "
			+ "unattractive. Perserverance is not your strength and you tend to give "
			+ "up easily and at the first opportunity. However, you make an above "
			+ "average sex partner. You are able to show your true emotions to very "
			+ "few people. Hence, in sex, you find your inner strengths. Your best "
			+ "sex partner in life will be those who choose Face and Hair.";
			break;
		case 5: /****************  shoulders  ****************/
			result = "You are a born loser. You fail in everything that you do. People dislike "
			+ "you and you tend to spend your time alone. Your type have been known to "
			+ "be heavy gamblers and drinkers. You see the world as a living hell. Money "
			+ "and power is also important to you. But your luck will always fail you. "
			+ "You make a lousy sex partner. You will find it difficult to find a partner "
			+ "in life. Those who choose Armpits are your only chance.";
			break;
		case 6: /*****************  others  ******************/
			result = "You are a very average person. Undoubtedly, you have your inner "
			+ "strengths, but people find it hard to see. You must learn to be a "
			+ "little bit more adventurous and see your potential. Deep down, you are a"
			+ "very likeable person with very few faults. However, the key will be to "
			+ "make your strengths stand out and not just hide your weaknessess. You "
			+ "are an average sex partner. You have great fantasies about different "
			+ "techniques, but unfortunately are not brave enough to try them out. "
			+ "Your best partner in life will be those who choose Face.";
			break;

	}
	return result;
}


