function btnDelete_Click(name) {
    if (confirm("Are you sure you want to delete this " + name + "?") == true)
        return true;
    else
        return false;
}

function btnClearListBox_Click(clientID) {
    var listBox = document.getElementById(clientID);
    if (listBox != null) {
        listBox.selectedIndex = -1;
    }
}
