﻿function CloseMessage(containerName) {
    var control = document.getElementById(containerName);
    
    if (control) {
        control.style.display = 'none';
    }
}

function SelectAll(controlId) {
    var control = document.getElementById(controlId);

    if (control) {
        control.select();
    }
    else {
        //alert('Control ' + controlId + ' not found');
    }
}
