function confirmDelete(theLink)
{
	var is_confirmed = confirm("Are you sure you want to delete this item?");
	
	if (is_confirmed)
		theLink.href += "&delete_confirmed=1";
	return is_confirmed;
}



