Tente assim:
<script type="text/javascript">
function open_win1()
{
nova_janela=window.open("index1.html","_blank","width=450,height=550,top=100,left=280,resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no")
}
function open_win2()
{
window.open("index2.html","_blank","width=450,height=550,top=100,left=280,resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no")
}
function close_win1()
{
nova_janela.close();
}
function close_win2()
{
nova_janela.close();
}
</script>
oks?