moveBy()
<script type="text/javascript">
function abreJanela() {
novaJanela = window.open('','','width=200,height=200');
}
function moveJanela() {
novaJanela.moveBy(20,20);
novaJanela.focus();
}
<script>
... <button onclick="abreJanela()">Abrir janela</button> <button onclick="moveJanela()">Mover janela aberta</button> ...