function confirmer (confirm_url, question)
{
	var confirmer = confirm(question);
	if (confirmer == true)
	{
		location.href = confirm_url;
	}
}