﻿
$(document).ready(function() {
    franchiseDetPopups();
    });

    function franchiseDetPopups() {
        $('a[id*=franchiselogo_]').click(franchisePopups);
        function franchisePopups() {
            var intid = $(this).attr("id").match(/\d+$/)[0];

            $.post("BrowseHandler.ashx", { franchiseid: intid, franchisedet: true, SpotLight: true }, franchiseLightBox, "html");

            function franchiseLightBox(data) {
                if (data != '')
                    $('#franchiselb').html(data);
                $('#franchiselb').modal({ overlayId: 'franOverlay', containerId: 'franContainer', closeClass: 'close' });
            }

            return false;
        }
    }

    