$(function (){
    var dialogOpts = {
        modal: true,
        overlay: { 
             opacity: 0.5, 
            background: "black" 
        }, 
        height: 550,
        width: 998,
        autoOpen: false,
        draggable: false,
        resizable: false
    };
    $('<div id="reg_map_dialog"><div id="reg_map_content">'+
        '<img src="/img/loading.png" alt="no loading"/>'+
        '</div></div>').appendTo('body');
    $('#reg_map_dialog').dialog(dialogOpts);
});

    function show_reg_map() {
        var flashvars = {},
            params = {allowscriptaccess: "always"},
            attributes = {};

        $('#reg_map_dialog').dialog("open").css('left',$('.header').offset().left+'px');
        // load remote content
        //swfobject.embedSWF("http://yabloko.ru/map.swf", "reg_map_content", "970", "500", "9.0.0", flashvars, params, attributes);
	swfobject.embedSWF("/map.swf", "reg_map_content", "970", "500", "9.0.0", flashvars, params, attributes);
        //prevent the browser to follow the link
        return false;
    }


