Tenho uma página que chama à outra, porém quero que se abra em forma completa
como se oprimisse PF11, quero somente isso.
Prove com a função de Javascript
window.open("http://www.javascript-coder.com","mywindow","status=1");
Por exemplo, abrir simplesmente coma a barra de ferramentas e a de status
window.open ("http://www.javascript-coder.com",
"mywindow","status=1,toolbar=1");
Aqui estão os outros modificáveis à janela.
Status:The status bar at the bottom of the window.
Toolbar:The standard browser toolbar, with buttons such as Back and Forward.
Location:The Location entry field where you enter the URL.
Menubar:The menu bar of the window
Directories: The standard browser directory buttons, such as What's New and What's Cool
Resizable: Allow/Disallow the user to resize the window.
scrollbars: Enable the scrollbars if the document is bigger than the window
Height: Specifies the height of the window in pixels. (example: height='350')
Por Mariano Richiardi