function confirmAction(question, url)
{
	if(confirm(question))
	{
		document.location.href = url;	
	}
}
