function confirmAction(promptText, destURL)
{
	if (window.confirm(promptText))
	{
		window.location.href = destURL;
	}
	
	return false;
}