var mapWidgetWindow = null;

(function ( $ ) {

mapWidgetWindow = {

init:   function (  ) {
    $('#map_widget .close_btn').click(function ( e ) {
            e.preventDefault();
            mapWidgetWindow.hide();
        });
    $('#create_code').click(function ( e ) {
            e.preventDefault();
            mapWidgetWindow.createCode();
        });
},

show:   function (  ) {
    $('#map_widget').show();
    this.createCode();
},

hide:   function (  ) {
    $('#map_widget').hide();
},

createCode: function (  ) {
var user = window.location.pathname.split('/')[2],
    container = $('.mapw_show'),
    w = parseInt($('#mapw_w').val()), h = parseInt($('#mapw_h').val()),
    n = $('#mapw_n').val(),
    openCode = "window.open('http://www.ipeen.com.tw/home/" + user + "/map/', '','resizable=no,status=no,toolbar=no,location=no,menubar=no,width=" + w + ",height=" + h + "');",
    code = '<a href="javascript: void(0)" onclick="' + openCode + '" style="font-size:12px; color:#004ea6; font-family:Arial, Helvetica, sans-serif; text-decoration:none"><img src="http://iphoto.ipeen.com.tw/images/newmy/mymapimg.gif" border="0" /><br /></a>',
    element = $(code).attr('alt', n).attr('title', n).append(n);
    container.empty().append(element);
    $('#mapw_c').val(container.html());
}

};

})(jQuery);

mapWidgetWindow.init();
