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

  FILE: JavaScript/tests/psyc4.js
  Date: June 26, 2002
  LMD : February 2, 2009

  Psychological Test - Is There A Serial Killer Among You?

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

var i=1;


function back()
{
	if ( i > 1 )
		getStatement( --i );
}


function next()
{
	if ( i < 12 )
		getStatement( ++i );
}


function getStatement( num )
{
	psyc_text = "";

	switch( num )
	{
		case 1:
			psyc_text += "The following is actually a psychological test.\n\nPress Next to proceed...";
			break;
		case 2:
			psyc_text += "The main character in the story is this girl.  When she was at the funeral of her own mother, she met this guy who was also there, but she did not know who he was.";
			break;

		case 3:
			psyc_text += "Well....";
			break;
			
		case 4:
			psyc_text += "This guy happened to fit her bill of her dream guy, so she fell in love with him at once; love at first sight etc...";
			break;
		case 5:
			psyc_text += "A few days later, the girl killed her own sister.  When the cops asked her why she did that, she gave a very shocking answer...";
			break;
		case 6:
			psyc_text += "Do you know what her motive for killing her sister is?";
			break;
		case 7:
			psyc_text += "Think of the answer before pressing Next....";
			break;
		case 8:
			psyc_text += "Answer:\n\nShe was hoping that the guy would appear at the funeral again.  She wanted to see him.";
			break;
		case 9:
			psyc_text += "Please, if you answered this correctly, go to the cops and tell them to lock you up, ok?";
			break;
		case 10:
			psyc_text += "This was a test by famous American psychologists used to test if one has the same mentality as a killer.";
			break;
		case 11:
			psyc_text += "In fact, a lot of arrested serial killers took part in this test and had answered it correctly.";
			break;
		case 12:
			psyc_text += "If you didn't answer correctly, good for you; If your friends hit the jackpot, please stay away from them; If you answered correctly, stay away from me.";
			break;
	}

	document.PsycTest4.display.value = psyc_text;
}


