//////////////////////////////////////////////////////////////////////////////////
////**** Alert prompts used for Save and Continue / Save and Exit buttons ****////
//////////////////////////////////////////////////////////////////////////////////

function ConfirmSaveAndContinue()
{
	return confirm("This will save your answers and take you to the next topic. You will not be able to return to this topic. Are you sure you wish to continue?")
}

function ConfirmSaveAndContinueIdealDate()
{
	return confirm("This will save your answers and take you to your profile. You will not be able to return to this topic. Are you sure you wish to continue?")
}

function ConfirmSaveAndContinueMyReport()
{
	return confirm("This will save your answers and take you to your final report. You will not be able to edit here again. Are you sure you wish to continue?")
}

function ConfirmSaveAndExit()
{
	return confirm("This will save your answers and exit this process. You will be returned to this page when you continue with this profile. Are you sure you wish to continue?")
}

function DeleteProfileConfirm(ProfileID, ProfileName)
{
	var ConfirmMessage = "Are you sure you would like to delete the profile " + ProfileName + "? Once deleted, you can not reverse this process.";
	if(confirm(ConfirmMessage))
	{
		window.location = "MyProfiles.aspx?d=" + ProfileID;
	}
}