Many times saw the implementation on other sites. You click on the link, and it loads on top of the current browser window with a new window. And not a full screen, but in a minimized state. A bit like delphi frames.

How can I create such a window?

    1 answer 1

    To specify the size of the window being opened, you will have to use javascript :

    <a href="http://www.google.ru/" onclick="window.open(this.href, 'frame', 'left=50,top=50,width=720,height=480,toolbar=1,resizable=0'); return false;" >ะžั‚ะบั€ั‹ั‚ัŒ Google</a> 
    • Thanks, that is necessary. - Happy_Cougar