function openDivLayer(name, width, div, background, opacity) {
    $.setupJMPopups({
        screenLockerBackground: background,
        screenLockerOpacity: opacity
    });
    $.openPopupLayer({
        name: name,
        width: width,
        target: div
    });
}

function openPageLayer(name, width, url, background, opacity) {
    $.setupJMPopups({
        screenLockerBackground: background,
        screenLockerOpacity: opacity
    });
    $.openPopupLayer({
        name: name,
        width: width,
        url: url
    });
}

function openStoreHoursPageLayer(name, width, url, background, opacity, storeID) 
{
    $.setupJMPopups({
        screenLockerBackground: background,
        screenLockerOpacity: opacity
    });
    $.openPopupLayer({
        name: name,
        width: width,
        url: url,
        storeID: storeID
    });
}
