function conf(ref)
{
	if (confirm("Are you sure you want to delete "+ref))
		return true;
	else
		return false;
}