<!DOCTYPE html>
<html>
<body>
<button onclick="OpenWindow()">Open Window</button>
<button onclick="MoveWindow()">Move Window</button>
<script>
var myWindow;
function OpenWindow() {
myWindow = window.open("", "", "width=300, height=200");
}
function MoveWindow() {
myWindow.moveBy(150, 200);
myWindow.focus();
}
/*
run:
*/</script>
</body>
</html>