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

function newWindow(ref)
{
	new_window = window.open(ref);
	new_window.focus();
}