function open_win (path, width, height) {
	
	// Creamos los anchos y altos de la la nueva ventana
	width = (width * 1) + 100;
	height = (height * 1) + 100;
	
	window.open (path, 'newZoomWin', 'menubar=no,toolbar=no,scrollbars=yes,status=no,location=no,resizable,width=' + width + ',height=' + height);

}