Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script>
var myWindow;
function openWin() {
  myWindow = window.open("", "", "width=400, height=200");
  myWindow.blur();
}
function blurWin() {
  myWindow.blur();
}
function focusWin() {
  myWindow.focus();
}
</script>
</head>
<body>
<input type="button" value="Відкрити нове вікно" onclick="openWin()">
<input type="button" value="Розмити нове вікно" onclick="blurWin()">
<input type="button" value="Перейти до нового вікна" onclick="focusWin()">
</body>
</html>