1.- IE9 si es una maravilla
2.- a mi me funciona de maravilla hasta en IE10
modifique a esto -> quite el alert, y el onload prueba que tenias, y me
abre bien y cierra
Código .:
Ver original<html>
<head>
<title>Tutorial JavaScript</title>
<script type="text/javascript">
var miVentana;
function abrir() {
miVentana = window.open("http://google.es/","ventana1","height=500,width=700,left=300,location=yes,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,top=300" );
}
function cerrar() {
miVentana.close();
}
</script>
</head>
<body>
<input type="button" value="Pulsa para abrir la ventana" onclick="abrir()" />
<input type="button" value="Pulsa para cerrar la ventana" onclick="cerrar()" />
</body>
</html>