	function ConfirmUrl(url,caption)
	{
		if (confirm(caption))
		{
			location.replace(url);
		}
	}

