function showWaitImage(elementId,imgPath)
{
    document.getElementById(elementId).innerHTML = '<img src="' + imgPath + '" alt="... loading ..," />';
}


function refreshLocalizzazioneSelector(selectorType,selectorTagId,parentSelectorTagId,preSelectedId,urlBase,evalAfterDone)
{
    var parentSel = document.getElementById(parentSelectorTagId);
    var parentValue = parentSel.options[parentSel.options.selectedIndex].value;
    var randomnumber=Math.floor(Math.random()*10001)

    var ajax = assegnaXMLHttpRequest();
    var url = urlBase + "admin/objects/FilialiDucato/ajaxController.php";
    var queryString = "op=refresh" + selectorType.charAt(0).toUpperCase() + selectorType.substr(1).toLowerCase() + "Selector" +
    "&selectorTagId=" + selectorTagId +
    "&parentValue=" + parentValue +
    "&preSelectedId=" + preSelectedId +
    "&anticache=" + randomnumber;
    getResponseTextInElement(ajax, url, 'get', queryString, true, getLocalizzazioneSelectorContainerName(selectorTagId),evalAfterDone);
}

function getLocalizzazioneSelectorContainerName(selectorTagId)
{
    return selectorTagId + "___SelectorContainer";
}


