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