// JavaScript Document
function ConfirmDelete(objName)
{
	return confirm('Are you sure you want to remove this ' + objName + '? It will be permanently deleted.');
}

