__MoonOnline = DefineClass({

    init: function(id) {
        this.lang = Locale.Gadgets.MoonOnline;
        this.Core = new __StdModuleCore(this, id, 'horoscope', this.lang.title, this.lang.desc);
        $(this.Content).update('<iframe src=http://www.astrolab.ru/cgi-bin/informer/informer.cgi?type=8 frameborder=0 vspace=0 hspace=0 width=300 height=230 marginwidth=0 marginheight=0 scrolling=auto></iframe>');
        this.Core.RemoveControl('options');
        this.MainContent = this.Content.firstChild;
    },

    onStartResize: function() {
        $(this.MainContent).style.visibility = 'hidden';
    },

    onStopResize: function() {
        $(this.MainContent).style.visibility = 'visible';
    }


});