function submit1()
{
var randomnumber=Math.floor(Math.random()*2565656)
var question = prompt("Please type in the following confirmation number: " + randomnumber)
	if (question == randomnumber)
	{
		return true
	}
	else
	{
		alert("The confirmation number is incorrect. Please try again")
		return false
	}
	
}