function showCorrect(boolShow)
{
	if (boolShow == true)
	{
		document.getElementById("correct").style.display = 'block';
		document.correctSound.play();
	}
	else
	{
		//document.wrongSound.play();
		alert('Sorry--try again');
	}
}