function check1(passForm)

{

	answer = passForm.select.selectedIndex;



	if(passForm.select.options[answer].text == "Igneous")

	{

		window.location = "talk02.htm";

	}

	else

	{

		incorrectWindow = window.open('incorrect.htm','incorrectWin','width=540,height=250');



			incorrectWindow.focus();

	}

}



function check2(passForm)

{

	answer = passForm.select.selectedIndex;



	if(passForm.select.options[answer].text == "Metamorphic")

	{

		window.location = "talk03.htm";

	}

	else

	{

		incorrectWindow = window.open('incorrect.htm','incorrectWin','width=540,height=250');



			incorrectWindow.focus();

	}

}



function check3(passForm)

{

	answer = passForm.select.selectedIndex;



	if(passForm.select.options[answer].text == "Igneous")

	{

		window.location = "talk04.htm";

	}

	else

	{

		incorrectWindow = window.open('incorrect.htm','incorrectWin','width=540,height=250');



			incorrectWindow.focus();

	}

}



function check4(passForm)

{

	answer = passForm.select.selectedIndex;



	if(passForm.select.options[answer].text == "Sedimentary")

	{

		window.location = "talk05.htm";

	}

	else

	{

		incorrectWindow = window.open('incorrect.htm','incorrectWin','width=540,height=250');



			incorrectWindow.focus();

	}

}



function check5(passForm)

{

	answer = passForm.select.selectedIndex;



	if(passForm.select.options[answer].text == "Sedimentary")

	{

		window.location = "final.htm";

	}

	else

	{

		incorrectWindow = window.open('incorrect.htm','incorrectWin','width=540,height=250');



			incorrectWindow.focus();

	}

}

	
