function selectLocation( newLocation ) {
    if ( ( newLocation ) && ( newLocation != '' ) ) {
        location.href = newLocation;
    }
}

function changeIconText(containerId, msg) {
    var element = document.getElementById(containerId);
    element.innerHTML = msg;
    if (msg == '') {
        element.className = "icontextnobg";
    } else {
        element.className = "icontextbg";
    }
}

