		function popup(id, enlace, ancho, alto) {
			identificador = document.getElementById(id);
			var enlaces = identificador.getElementsByTagName("a").length;
			var array_enlaces = identificador.getElementsByTagName("a");
			var ancho_centro = ((screen.width - ancho) / 2);
			var altura_centro = ((screen.height - alto) / 2);
			for (i = 0; i < enlaces; i++) {
				if (array_enlaces[i].getAttribute("href") && array_enlaces[i].getAttribute("rel") == 'demostracion') {
					array_enlaces[i].target = "popup";
					window.open(array_enlaces[i].href, array_enlaces[i].target, 'width='+ancho+'px, height='+alto+'px, top='+altura_centro+'px, left='+ancho_centro+'px');
				}
			}
		}