<html> <head> <script type="text/javascript"> var window_new = null; function NewWindow() { window_new = window.open('', '', 'width=500,height=300,top=100,left=300,scrollbars=yes'); return false; } function resizeWindow(){ // truyền vào chiều rộng width và chiều cao height window_new.resizeTo(700,500); window_new.focus(); } </script> </head> <body> <button type="button" onclick="NewWindow()">Mở cửa sổ</button> <button type="button" onclick="resizeWindow()">Thay đổi kích thước</button> </body> </html>