Hola Anneke.
Te voy a ayudar de dos maneras, primero con la lista de los "features" usados en el cuarto parámetro del window.open(), y luego con un ejemplo.
Atributos del window.open():
Valores a los que puedes indicarle Yes o No:
Dependent, directories, hotkeys, location, menubar, resizable, scrollbars, Status, toolbar.
Valores a los que le puedes especificar un número:
Height, innerHeight, innerWidth, left, outerHeight, outerWidth, screenX, screenY, top, width.
Valores a los que te refieres sin igualarlos a ningun valor:
AlwaysLowered, alwaysRaised, channelMode, fullscreen, z-lock.
Te transcribo Un ejemplo muy molesto que debes cerrar con Alt-f4, que usa muchas de esas propiedades.
Código:
<html>
<head>
<script language="JavaScript">
function sinNada(){
var vent = null;
vent = window.open('','vVent','toolbar=no,location=no,
directories=no,status=no,menubar=no,scrollbars=yes,
resizable=no,fullscreen=yes')
if (vent != null) {
if (vent.opener == null){
vent.opener = self
}
vent.location.href = 'dummyPg.htm'
}
}
sinNada();
history.go(-1);
</script>
</head>
<body>
</body>
</html>
Saludos.