
function abrirVentana(URL, nombreVentana, ancho, alto) {
	// Si no se especifica un alto se coge el 80% de la resolución de pantalla
	alto = (alto) ? alto : screen.height * 0.8;
	// Muestra la ventana centrada horizontalmente y sin barra de direcciones
	var ventana = window.open(URL, nombreVentana, 'location=no, toolbar=no, menubar=no, scrollbars=yes, resizable=no, top=' + (screen.height - alto) / 2 + ', left=' + (screen.width - ancho) / 2 + ', width=' + ancho + ', height=' + alto);
	if (ventana) {
		ventana.focus();
	} else {
		alert("Por favor, permita las ventanas emergentes para mostrar correctamente la página");
	}
}