function confirmDelete(extra_msg)
{
	var msg = "Are you sure you want to remove this " + extra_msg;
	
	if(confirm(msg + "?"))
		return true;
	else
		return false;
}


function confirmAction(extra_msg)
{
	var msg = "Are you sure you want to " + extra_msg;
	
	if(confirm(msg + "?"))
		return true;
	else
		return false;
}