﻿function LoadStateInformation(stateCode) {
    __doPostBack('flashMapControl', stateCode);
}

function OpenStateModalPopup() {
    $(document).ready(function() {
        var openElement = document.getElementById('modalStateInformation').innerHTML;
        $.fn.colorbox({ href: openElement, iframe: false, inline: true, innerWidth: "700px", innerHeight: "500px", open: true });
    });
}