function confirmDialog(message, link)
{
	var input;
	input = confirm(message);

	if (input == true)
	{
		self.location.href = link;
	}
}
