Para el IE , y con javascript , a lo mejor sirve esto:
Código HTML:
<html>
<head>
<title>Cerrar con Esc</title>
<script>
function tecla()
{
latecla = window.event.keyCode
if (latecla=207) {
var padre=window.self;
padre.opener = window.self;
padre.close();
}
}
</script>
</head>
<BODY onkeypress="tecla()">
</body>
</html>