<!--
	var liProductoActual = 1;
	function RandomProducto() {
		try {
			document.getElementById('Producto' + liProductoActual).style.display = 'none';
			liProductoActual = Random();
			while (liProductoActual == 0) { liProductoActual = Random(); }
			document.getElementById('Producto' + liProductoActual).style.display = 'block';
		} catch (Excepcion) {}
	}
	
	function Random() {
		return Math.round(Math.random() * liNumeroProductos);
	}
	
	window.setInterval('RandomProducto()', 3000);
-->
