function confirmURL(msg, url)
{
	if (confirm(msg))
	{
		window.location = url;
	}
}