function showInline (elName) {
        var theElemenet = document.getElementById(elName);
        if (theElemenet) {
                theElemenet.style.display = "inline";
        }
}
function hideInline (elName) {
        var theElemenet = document.getElementById(elName);
        if (theElemenet) {
                theElemenet.style.display = "none";
        }
}
function switcher (){ 
    document.getElementById("addMoreLocations").style.display = '';
    Field.focus('rst_alt_addr_1');
}
