function verify()
{
	var choice = confirm("Clicking this will take you out of your login section." + '\n\n' + "Continue?")
	if (choice == true)
	{
		return true;
	}
	else
	{
		return false;
	}
}
