/*
jbase.js
*/

function confirmRemoval(name, theUrl)
{
	if (confirm("Vill du verkligen ta bort " + name + "?"))
		location.href=theUrl;
}

