function ventana (archivo, ancho, alto) {

	var x = (screen.width - ancho) / 2;
	
	var y = (screen.height - alto) / 2;
	
	var opciones = 'width = ' + ancho + ', height = ' + alto + ', left = ' + x + ', top = ' + y + ', scrollbars = 1';
	
	window.open(archivo, '', opciones);

}

