Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script>
var w;
function openwindow() {
  w = window.open('','', 'width=100,height=100');
  w.focus();
}
function myFunction() {
  w.resizeBy(50, 50);
  w.focus();
}
</script>
</head>
<body>
<button onclick="openwindow()">Створити вікно</button>
<button onclick="myFunction()">Змінити розмір вікна</button>
</body>
</html>