JavaScript: MM_openBrWindow

I'm new to this, I need to know info, why this feature? What she does?

I found it when the site on its pages places the context from other pages, while the line is all beautiful, as if it is native.

I need to do a similar part of the page is copied from another site.

PS Infa, which is copied, updated once every three weeks, can I automate the process so as not to write everything anew (pictures, text, etc.)?

Sincerely, Oleg M

    1 answer 1

    Is this a standard javascript feature? Look at the source of the scripts, for sure you will find the body of this function. Most often it is something like that.

     function MM_openBrWindow(url, name, features) { window.open(url, name, features); return false; } 

    That is just a wrapper over the open method that creates a new browser window, similar to the New Window command on the menu.

    If you want to show information from another site inside your site, then frames are quite suitable for this, then you don’t need to update anything.